cURL
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>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Assistant created successfully
The response is of type object.
object