Skip to main content
DELETE
/
v2
/
api
/
conversations
/
items
/
{id}
/
tags
/
{tag}
Remove tag
curl --request DELETE \
  --url https://api.withallo.com/v2/api/conversations/items/{id}/tags/{tag} \
  --header 'Authorization: <api-key>'
{
  "error": {
    "type": "<string>",
    "code": "<string>",
    "message": "<string>",
    "retryable": true,
    "request_id": "<string>",
    "retry_after_seconds": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://help.withallo.com/llms.txt

Use this file to discover all available pages before exploring further.

Required scope: TAGS_WRITE

Behavior

Removing a tag that doesn’t exist on the item returns a 404 error with code TAG_NOT_FOUND.

Idempotency

This endpoint supports the Idempotency-Key header. If a request succeeds and you retry with the same key, the stored response is returned without re-executing the operation. See Idempotency.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

Call ID (cll-*)

Example:

"cll-abc123"

tag
string
required

Tag key to remove

Example:

"qualified"

Response

Tag removed successfully