Skip to main content
POST
/
call_tags
Create Call Tag
curl --request POST \
  --url https://api.prod.usesimple.ai/api/v1/call_tags \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "description": "<string>",
  "color": "<string>",
  "always_enabled": false
}'
{
  "success": true,
  "call_tag": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "color": "<string>",
    "always_enabled": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
name
string
required

The name of the call tag

description
string
required

A description of what this tag represents

color
string
required

A hex color code for the tag (e.g., #FF5733)

always_enabled
boolean
default:false

Whether this tag is always enabled for all calls

Response

Call Tag Created Successfully

success
boolean
default:true
required
call_tag
object
required