Skip to main content
POST
/
evaluations
Create evaluation
curl --request POST \
  --url https://api.trymaitai.ai/api/v1/evaluations \
  --header 'Content-Type: application/json' \
  --header 'X-Maitai-Api-Key: <api-key>' \
  --data '
{
  "application_id": 42,
  "intent_id": 7,
  "date_start": 1700000000,
  "date_end": 1706000000
}
'
{
  "data": {
    "message": "Evaluation started"
  }
}

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Body

application/json
application_id
integer
required
intent_id
integer
required
date_start
integer
date_end
integer
sentinels
array

Response

201 - application/json

Create evaluation.

data
any