You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have looked at this.
I am not seeing the issue you are please have a look at the test case I have created and let me know if somehow I have missed the issue you are having.
I think that I’ve found an issue. It’s when we are pushing comments to Zendesk via Code, the comment channel is changed from “api” to “web”.
Tickets are created with ticket channel “api” which is correct, it’s just comments that make issues with “api” changing to “web”.
I'm using this call api.Tickets.UpdateTicket(ticketUpdate, comment);
the comments is crated like this:
Comment newcomment = new Comment();
newcomment.Body = lastentry.Title + " \r\n" + lastentry.Description.ToString() + " \r\n" + Notes;
newcomment.Via = new ZendeskApi_v2.Models.Shared.Via();
newcomment.Via.Channel = "api";
After pushing the comment to Zendesk the Chanel is "web"... Everything working correctly through the zendesk test console https://developer.zendesk.com/requests/new
The text was updated successfully, but these errors were encountered: