Open polarikus opened 3 years ago
Hello! How i can add tags to ticket?
Zendesk::tickets()->update($id,[ 'priority' => $priority, 'comment' => [ 'body' => $text, 'public' => false, ], 'tags' => ['support_bot_update_priority'] ]);
This delete all tags, and set one tag "support_bot_update_priority" I try use
Zendesk::tickets()->update($id,[ 'priority' => $priority, 'comment' => [ 'body' => $text, 'public' => false, ], '**additional_tags**' => ['support_bot_update_priority'] ]);
it's not work((
Hello! How i can add tags to ticket?
This delete all tags, and set one tag "support_bot_update_priority" I try use
it's not work((