AddTicketTags
Appends tags to a specified ticket.
Stored Procedure-Specific Information
Append one or more tags to a specified ticket by providing the ticket Id and a JSON array of tags:
EXEC AddTicketTags @TicketID=128665, @Tags='["customer", "test"]'
Input
| Name | Type | Required | Description |
| TicketId | Long | True | The Id of the ticket to append tags to. |
| Tags | String | True | An array of tags to be added to the ticket. |
Result Set Columns
| Name | Type | Description |
| ResultingTags | String | All tags associated with the given ticket. |