Skip to main content
DELETE
/
conversations
/
{id}
/
tags
cURL
curl --request DELETE \
  --url https://api.pingmee.co.il/conversations/{id}/tags \
  --header 'Content-Type: application/json' \
  --header 'Cookie: <api-key>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "tagIds": [
    "<string>"
  ]
}
'
{
  "errors": [
    "<string>"
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Conversation participants identifiers.

Body

application/json
tagIds
string[]
required

Tag IDs to assign (POST) or remove (DELETE) from the conversation

Minimum array length: 1

Response

Per-tag removal results; errors lists tag IDs that failed

errors
string[]
required

Human-readable messages for tags that failed to remove; empty when all succeeded