Skip to main content
DELETE
/
v1
/
inbox
/
contacts
/
:contactId
/
tags
Remove inbox tags from a contact thread
curl --request DELETE \
  --url https://openapi.enginy.ai/v1/inbox/contacts/:contactId/tags \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "tagIds": [
    8
  ],
  "senderIdentityId": 14
}
'
{
  "status": "success",
  "message": "Inbox tags removed successfully",
  "data": {
    "contactId": 123,
    "tagIds": [
      8
    ],
    "success": true
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

contactId
string
required

Contact ID for the thread you want to inspect

Example:

"123"

Body

application/json
tagIds
integer[]
required

Tag IDs to attach or remove

Minimum array length: 1
Example:
[5, 8]
senderIdentityId
integer

Optional sender identity ID to scope the contact thread before mutating tags

Example:

14

Response

Inbox tags removed successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required