Skip to main content
To remove a tag from a contact, use the Update Contact (PUT /api/contacts/{id}) endpoint. Provide the updated array of tagsId in the request body, explicitly omitting the tag ID you want to remove. Example Payload:
{
  "tagsId": [
    "your_tag_id_1" // Keep this tag, omit the one to remove
  ]
}