Remove contacts from a tag
Remove a tag from many contacts at once.
Remove a tag from many contacts at once.
Pass contact_uuids to target specific contacts, or all_contacts to target every contact
in the profile. The work is queued, so a success response means it was accepted rather than
finished. The tag itself and the contacts are not deleted.
Authorizations
AuthorizationstringRequired
API Token authentication
Path parameters
profileUuidstringRequiredExample:
Profile uuid parameter
550e8400-e09b-41d4-a716-400055000000tagUuidstring · uuidRequiredExample:
Tag uuid parameter
550e8400-e29b-41d4-a716-446655440000Body
Contacts to assign to, or remove from, a tag
contact_uuidsstring[]Optional
Contacts to apply the change to. Required unless all_contacts is true.
all_contactsbooleanOptionalDefault:
Apply to every contact in the profile
falseResponses
200
Success empty response
application/json
messagestringOptionalExample:
Request accepted401
Unauthenticated response
application/json
422
Validation error response
application/json
500
Error response
application/json
delete/api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts
DELETE /api/reach/v1/profiles/{profileUuid}/tags/{tagUuid}/contacts HTTP/1.1
Host: developers.hostinger.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 47
{
"contact_uuids": [
"text"
],
"all_contacts": false
}{
"message": "Request accepted"
}Last updated
Was this helpful?