Skip to main content
PUT
/
v2
/
update-assistant
Update Assistant
curl --request PUT \
  --url https://api.assistable.ai/v2/update-assistant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "assistant_id": "<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
assistant_id
string
required

ID of the assistant to update

location_id
string
required

Location ID

name
string

Assistant name

ambient_noise
string

Ambient noise setting

prompt
string

Assistant prompt

temperature
integer

Temperature setting for the model

model
enum<string>

AI model to use

Available options:
gpt-4,
claude-3,
gpt-3.5-turbo
queue
integer

Queue setting

knowledge_id
string

Knowledge base ID

voice_id
string

Voice ID for the assistant

Response

200 - application/json

Assistant updated successfully

status
integer
data
object
I