curl --request POST \
--url https://api.getfernand.com/conversations/{id}/tags \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "urgent"
}
'{
"id": 42,
"slug": "important-customer",
"name": "Important Customer",
"color": "#FF5733",
"count_conversations": 15,
"is_system": false
}curl --request POST \
--url https://api.getfernand.com/conversations/{id}/tags \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "urgent"
}
'{
"id": 42,
"slug": "important-customer",
"name": "Important Customer",
"color": "#FF5733",
"count_conversations": 15,
"is_system": false
}Associates an existing tag with a conversation, or creates a new tag if it doesn’t exist. Tags help categorize and filter conversations. If the tag already exists 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 tag.
Name of the tag to add. Will be created if it doesn't exist.
50"urgent"
Tag added successfully.
Unique identifier for the tag
42
URL-friendly slug generated from the tag name
50"important-customer"
Display name of the tag
50"Important Customer"
Hex color code for the tag (e.g.,
^#[0-9A-Fa-f]{6}$"#FF5733"
Number of conversations associated with this tag
15
Whether this is a system-defined tag that cannot be modified or deleted
false
Was this page helpful?