Dimitris Spachos

Results 2 comments of Dimitris Spachos

I believe there is a method in `intercom-php/src/IntercomTags.php`: ``` /** * Creates a Tag. * * @see https://developers.intercom.io/reference#create-and-update-tags * @param array $options * @return mixed * @throws \GuzzleHttp\Exception\GuzzleException */ public...

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