ZendeskApi_v2
ZendeskApi_v2 copied to clipboard
C# wrapper for the Zendesk API
Hi we are using the method GetTicketsByOrganizationID but is failing to return the Ticket Priority always returns null ``` GroupTicketResponse : GroupResponseBase IList Tickets public string Priority ``` Thanks
Hi We are unable to set CC and Followers on ticket creation, the required properties for using the cc and follower feature are missing
Zendesk has [new limits for offset-based pagination](https://support.zendesk.com/hc/en-us/articles/5591904358938). Since the August 2023 you can not get more then 10.000 records with `offset pagination` :-( You have to change to `cursor pagination`....
Hi About three weeks ago the following line of code is throwing an error: `GroupTranslationResponse translations = _helpCntrApi.Translations.ListTranslationsForArticle(articleID);` The error is as follows (minus organisation specific details): > System.Net.WebException >...
Summary: This pull request adds support for managing UserFields within the ZendeskApi_v2 package. It includes both synchronous and asynchronous methods for CRUD operations on UserFields. The implementation aligns with the...
See https://developer.zendesk.com/api-reference/ticketing/introduction/
Hello. I have added support for the [Federated Search/External Content ](https://developer.zendesk.com/api-reference/help_center/federated-search/introduction/)APIs in ZenDesk. I have also included Sync/Async tests for all calls in the Federated Search namespace.
We need the option to pass the idempotency key in the header when creating a ticket. See https://developer.zendesk.com/api-reference/ticketing/introduction/#idempotency I created a PR for it. https://github.com/Speedygeek/ZendeskApi_v2/pull/596 Could you have a look...