curl --request PATCH \
--url https://app.converza.io/api/openapi/v1/bots/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"role": "support",
"description": "<string>",
"instructions": "<string>",
"temperature": 1,
"identification_name": "<string>",
"questions": [
{
"question": "<string>",
"answer": "<string>"
}
],
"document_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"allow_human": true,
"actions": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"endpoint": "<string>",
"method": "GET",
"headers": {},
"body": [
{
"key": "<string>",
"value": "<string>",
"type": "string"
}
]
}
],
"use_audio_responses": true,
"allow_user_audio_requests": true,
"capture_payments": true,
"break_lines": true,
"chat_model_level": 1
}
'