POST
/
assistants
curl --request POST \
  --url https://api.mesinalabs.com/v1/assistants \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "orgId": "<string>",
  "mesinaCode": "<string>",
  "priority": "low",
  "tags": [
    "<string>"
  ]
}'
{
  "id": "<string>",
  "orgId": "<string>",
  "name": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "mesinaCode": "<string>"
}

Authorizations

Authorization
string
header
required

El bearer token es generado por nosotros, y está disponible en tu dashboard

Body

application/json
Asistente para añadir a la lista
name
string
required
orgId
string
required
mesinaCode
string

Código mesina para verificaciones extras

priority
enum<string>

Priority level of the resource

Available options:
low,
medium,
high
tags
string[]

Tags associated with the resource

Response

200
application/json
Asistente creado exitosamente
id
string
orgId
string
name
string
createdAt
string
updatedAt
string
mesinaCode
string

Código mesina para verificaciones extras