intercom-php
intercom-php copied to clipboard
Detach a contact from specific tags
Api ver 2.3 How to detach contact with this doc https://developers.intercom.com/intercom-api-reference/reference#untag-contact? i can't find detach method.
thanks
Maybe try:
$client->tags->tag([
'name' => 'Test',
'users' => [
['id' => '1234', "untag" => true],
],
]);