Recent searches
No recent searches
Excluding CCs for Ticket Comments via API
Posted Feb 01, 2024
Hi All,
I have the below webhook setup to send an automated reply but I would like to only send it to the requester and ignore the CCs. I have seen other posts and documentation on how to delete the CCs entirely from the but I want them retained on the ticket for manual agent comments. Can I configure the webhook to ignore CCs or is there a way to take the CCs off and put them back on?
{
"ticket": {
"comment": {
"html_body": "This is a test auto-reply.",
"public": true,
"author_id": "22208544138009"
}
}
}
0
1
1 comment
Rafael Santos
Emailing requester vs requester + CC is defined on Business Rules actions definition.
You could use a pair of triggers to achieve that:
Trigger#1
Trigger#2
Your update via API would include that specific ticket custom field to be updated on ticket.custom_fields, and account for any other missing logic required to match your existing business rules.
0