Skip to content
Letterhead Letterhead Letterhead Help Center
Admin Tools

Remove a tag from matching contacts

POST
/api/v3/contacts/tags/{tagId}/strip
curl --request POST \
--url https://api.tryletterhead.com/api/v3/contacts/tags/1/strip \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "api": true, "channelId": 42, "status": 1 }'

Removes the tag from every contact matching the supplied filter โ€” the same filter shape as Apply a tag to matching contacts.

tagId
required
integer

The tagโ€™s numeric identifier.

Media type application/json
object
api

Required. Set to true to authenticate with an API key.

boolean
query
string
tags
Array<string>
channelId
integer
status
integer
Example
{
"api": true,
"channelId": 42,
"status": 1
}

200 OK

Media type application/json
object
items
object
matched

Contacts matching the filter.

integer
updated

Contacts the tag was actually removed from (matched minus contacts that didnโ€™t carry it).

integer
message
string
total
integer
Example
{
"items": {
"matched": 1204,
"updated": 640
},
"message": "Tag stripped.",
"total": 1
}

Still can’t find what you need? Contact support.