Skip to main content
GET
/
v1
/
mozbots
/
{mozbotId}
/
results
/
{resultId}
Obtener resultado por id
curl --request GET \
  --url https://mozbot.mozartfintech.com/api/v1/mozbots/{mozbotId}/results/{resultId} \
  --header 'Authorization: Bearer <token>'
{
  "result": {
    "id": "<string>",
    "createdAt": "<string>",
    "mozbotId": "<string>",
    "variables": [
      {
        "id": "<string>",
        "name": "<string>",
        "isSessionVariable": true,
        "value": "<string>"
      }
    ],
    "isCompleted": true,
    "hasStarted": true,
    "isArchived": true,
    "lastChatSessionId": "<string>",
    "answers": [
      {
        "blockId": "<string>",
        "content": "<string>",
        "attachedFileUrls": [
          "<string>"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Encabezado de autenticación de portador con el formato Bearer <token>, donde <token> es su token de autenticación.

Path Parameters

resultId
string
required

El resultId lo devuelve el punto final /startChat o puedes encontrarlo enumerando los resultados con el punto final /results

Response

Successful response

result
object
required