curl --request PATCH \
--url http://localhost/api/v1/orchestrate/agents/{agent_id}/environments/{environment_id}/channels/twilio_whatsapp/{channel_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"channel_app_id": "<string>",
"channel": "twilio_whatsapp",
"created_on": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"updated_by": "<string>",
"description": "<string>",
"account_sid": "<string>",
"twilio_authentication_token": "<string>"
}'
"<any>"
curl --request PATCH \
--url http://localhost/api/v1/orchestrate/agents/{agent_id}/environments/{environment_id}/channels/twilio_whatsapp/{channel_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"channel_app_id": "<string>",
"channel": "twilio_whatsapp",
"created_on": "<string>",
"updated_at": "<string>",
"created_by": "<string>",
"updated_by": "<string>",
"description": "<string>",
"account_sid": "<string>",
"twilio_authentication_token": "<string>"
}'
"<any>"
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful Response
The response is of type any
.