PUT
/
v2
/
agent
/
{agentId}
/
settings
curl --request PUT \
  --url https://api.gptmaker.ai/v2/agent/{agentId}/settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "prefferModel": "GPT_4_1",
  "timezone": "<string>",
  "enabledHumanTransfer": true,
  "enabledReminder": true,
  "splitMessages": true,
  "enabledEmoji": true,
  "limitSubjects": true,
  "messageGroupingTime": "NO_GROUP"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agentId
string
required

ID do agente

Body

application/json

Configurações do agente a serem atualizadas

The body is of type object.

Response

200
application/json

Configurações atualizadas com sucesso

The response is of type object.