Skip to main content
POST
/
api
/
v1
/
contacts
/
{id}
/
tags
Add a tag to a contact.
curl --request POST \
  --url https://api.backside.app/api/v1/contacts/{id}/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Contact ID

Body

application/json
tag_id
string<uuid>
required

Response

201

Tag added