Skip to main content
POST
/
conversations
/
{id}
/
answer-mode
cURL
curl --request POST \
  --url https://api.pingmee.co.il/conversations/{id}/answer-mode \
  --header 'Content-Type: application/json' \
  --header 'Cookie: <api-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "participantsIdentifiers": "<string>",
  "answerMode": "bot"
}
'
"success"

Authorizations

x-api-key
string
header
required

Body

application/json

Set the answer mode for a conversation.

participantsIdentifiers
string
required

Unique identifiers of the conversation participants.

answerMode
enum<string>
required

Conversation answer mode.

Available options:
bot,
manual,
ai

Response

Answer mode updated successfully

The response is of type string.

Example:

"success"