Skip to content

Contact Tagging

Endpoints for assigning and removing tags from subscribers. Tagging operations are used to control automations, trigger workflows, and reflect changes in subscriber state based on external events.

Tag Contact

Request

Adds one or more tags to a contact.

Bodyrequired
emailstringrequired

Email address of the contact

Example:"alex.example@klicktipp.example"
tagidsArray of integersrequired

Array of tag IDs that are assigned to the contact

Example:
[ 19, 20 ]
POST
/subscriber/tag
curl -i -X POST \
  https://api.klicktipp.com/subscriber/tag \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "alex.example@klicktipp.example",
    "tagids": [
      19,
      20
    ]
  }'

Responses

Success Response (200).

Bodyapplication/json
Array of booleans
Response
[ true ]