Skip to main content
POST
/
v1
/
contacts
/
{contact_id}
/
tags
Add tags to contact
curl --request POST \
  --url https://api.slant.app/v1/contacts/{contact_id}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_ids": [
    "abc123",
    "def456"
  ]
}
'
{
  "tag_ids": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

OAuth 2.0 Bearer Token from Clerk authentication

Path Parameters

contact_id
string
required

Contact ID

Body

application/json
tag_ids
string[]
required

Array of tag IDs to add

Example:
["abc123", "def456"]

Response

tags added successfully

tag_ids
string[]
required

Complete list of tag IDs after operation