curl --request POST \
--url https://services.leadconnectorhq.com/blogs/site/contact/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contactId": "c6M7RffOdIHwJfaaTMKc",
"tags": [
"game",
"sports",
"entertainment"
]
}
'{
"success": true,
"message": "Tags added successfully",
"contactId": "c6M7RffOdIHwJfaaTMKc",
"data": {}
}Add tags to a contact using the external contact API
curl --request POST \
--url https://services.leadconnectorhq.com/blogs/site/contact/tags \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contactId": "c6M7RffOdIHwJfaaTMKc",
"tags": [
"game",
"sports",
"entertainment"
]
}
'{
"success": true,
"message": "Tags added successfully",
"contactId": "c6M7RffOdIHwJfaaTMKc",
"data": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Tags added successfully to the contact
Was this page helpful?