curl --request DELETE \
--url https://api.getfernand.com/conversations/{id}/tags/{tag} \
--header 'X-API-Key: <api-key>'{
"id": 12345,
"contact_id": 789,
"subject": "Question about billing",
"status": "OPENED",
"last_update": "2026-01-21T14:30:00Z",
"tags": [
1,
5,
12
],
"recipients": [
{
"id": 12345,
"contact_id": 789,
"kind": "cc",
"conversation_id": 456
}
],
"agent_id": 42,
"channel_id": 1,
"snooze_until": "2026-01-22T09:00:00Z",
"cursor": "cur_1234567890"
}curl --request DELETE \
--url https://api.getfernand.com/conversations/{id}/tags/{tag} \
--header 'X-API-Key: <api-key>'{
"id": 12345,
"contact_id": 789,
"subject": "Question about billing",
"status": "OPENED",
"last_update": "2026-01-21T14:30:00Z",
"tags": [
1,
5,
12
],
"recipients": [
{
"id": 12345,
"contact_id": 789,
"kind": "cc",
"conversation_id": 456
}
],
"agent_id": 42,
"channel_id": 1,
"snooze_until": "2026-01-22T09:00:00Z",
"cursor": "cur_1234567890"
}Disassociates a tag from a conversation. The tag itself is not deleted and can still be used on other conversations. If the tag is not currently on the conversation, nothing will be done.Documentation Index
Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt
Use this file to discover all available pages before exploring further.
ID of the conversation to untag.
Name or slug of the tag to remove from the conversation.
Tag removed successfully. Returns the updated conversation.
Unique identifier for the conversation
12345
ID of the primary contact who initiated the conversation
789
Subject line of the conversation, derived from the first message or manually set
250"Question about billing"
Current status of the conversation
OPENED, CLOSED, SPAM, SNOOZED "OPENED"
ISO 8601 timestamp of the last incoming message in the conversation
"2026-01-21T14:30:00Z"
Array of tag IDs associated with this conversation
[1, 5, 12]Array of recipients in the conversation (to, cc, bcc)
Show child attributes
ID of the agent assigned to this conversation, or null if unassigned
42
ID of the channel through which this conversation is conducted
1
ISO 8601 timestamp indicating when a snoozed conversation should reappear, or null if not snoozed
"2026-01-22T09:00:00Z"
Pagination cursor for retrieving the next page of conversations in a list
"cur_1234567890"
Was this page helpful?