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

Authorizations

x-api-key
string
header
required

Body

application/json

Set the status of a conversation.

participantsIdentifiers
string
required

Unique identifiers of the conversation participants.

status
enum<string>
required

Conversation status.

Available options:
open,
closed,
standby

Response

Conversation status updated successfully

The response is of type string.

Example:

"success"