intercom-php icon indicating copy to clipboard operation
intercom-php copied to clipboard

Detach a contact from specific tags

Open toriqsetiawan opened this issue 3 years ago • 1 comments

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

toriqsetiawan avatar Oct 05 '21 07:10 toriqsetiawan

Maybe try:

$client->tags->tag([
    'name' => 'Test',
    'users' => [
        ['id' => '1234', "untag" => true],
    ],
]);

dspachos avatar Jan 17 '22 07:01 dspachos