POST
/
v2
/
create-assistant
curl --request POST \
  --url https://api.assistable.ai/v2/create-assistant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "location_id": "<string>",
  "ambient_noise": "<string>",
  "prompt": "<string>",
  "temperature": 123,
  "model": "gpt-4",
  "queue": 123,
  "knowledge_id": "<string>",
  "voice_id": "<string>"
}'
{
  "status": 123,
  "data": {
    "status": "<string>",
    "id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

201 - application/json
Assistant created successfully

The response is of type object.