Skip to main content
POST
/
applications
Create application
curl --request POST \
  --url https://api.trymaitai.ai/api/v1/applications \
  --header 'Content-Type: application/json' \
  --header 'X-Maitai-Api-Key: <api-key>' \
  --data '
{
  "application_name": "Customer Support",
  "application_ref_name": "customer-support"
}
'
{
  "data": {
    "id": 42,
    "application_name": "Customer Support",
    "application_ref_name": "customer-support",
    "state": "ENABLED",
    "date_created": 1706000000
  }
}

Authorizations

X-Maitai-Api-Key
string
header
required

Your Maitai API key from the Portal.

Body

application/json
application_name
string
required
application_ref_name
string

Response

201 - application/json

Create application.

data
object

A top-level project that groups intents, sessions, and models.