Zoho Desk API - Rate Limits?
A number of posts on this forum state that the Desk API has no rate limits. For example - https://help.zoho.com/portal/en/community/topic/what-are-the-rate-limits-for-the-new-desk-apis-and-is-there-a-way-to-get-tickets-by-ticketnumber. However, I am getting HTTP 429 ("The maximum number of API calls that can be made per minute has been exceeded") error every now and then while running a bulk sync job. What is the rate limit for Desk API, if it has been formalized now?
Create comment with custom zoho id
Hello, It's possible to create a comment with a custom zoho id with this endpoint : api/v1/tickets/{tickets_id}/comments ? At this time when I create a new comment by default the commenterId use the authtoken informations. It's not possible to post a body like this : { 'content' => $this->content, 'commenterId' => '142550000000184001' } Thanks
zoho.desk.update doesn't change 'reply to' when changing Contact
I have a creator script that sends a Form to Desk for stuff like setting up new employees etc.. Due to new email restrictions, we can no longer fake the 'from' address so it must come from one of our emails, like 'support@domain.com'. So I developed a
Not able to SEARCH CONTACT over DESK API
I am trying to use search contacts over the api, using the endpoint https://desk.zoho.com/api/v1/contacts/search is returned the error { "errorCode": "FORBIDDEN", "message": "You are not authorized to access this resource." } I tried to use AuthToken authentication and also the OAuth with the following SCOPES: Desk.search.READ , Desk.contacts.READ, both returned the error above, but only for the Search resource, any other resource is working fine, I can create Contacts, create Tickets, etc. any
Integration with Zabbix
I need to integrate Zoho Desk with Zabbix so that when an alert is received, Zabbix creates an automatic ticket. Additionally, the ticket should only disappear when the alert is considered resolved. Has anyone ever done something like this?
Client credential approach with user based context
I'm planning to integrate the zoho desk apis for creating tickets for the logged in users on my web app and also want to show the list of tickets created by them in my web app. But I want to use only the client credentials approach and not the user based
Problems accessing the ID of a Desk contact
I am doing an API integration and I am looking for a contact via email. That works for me and I save it in a variable called "getContact" I receive the JSON of the contact I searched for and I try to extract the ID of that contact. However, it gives me
Zoho Desk API: set timeEntry.invoiceId = "" (null) [remove connection between ticket timeentry and books invoice]
Hi all, I would like to link time entries with invoices in Books via API. In doing so, I made a wrong connection, unfortunately I can no longer remove the InvoiceId! Very bad. :( How can I remove the link? Please help me, many thanks in advance! Deluge:
Zoho Desk API - Send Reply to CUSTOMERPORTAL
Hello! I'll try to send a reply to Customer Portal, But the response is 500 (INTERNAL_SERVER_ERROR in service response). {"Error":"{\"errorCode\":\"INTERNAL_SERVER_ERROR\",\"message\":\"An internal server error occurred while performing this operation.\"}"}
Zoho Desk Webhook Security
Hello, 1. I have setup the webhook on Zoho Desk. When webhook send the event that I'm getting different kid from JWT from the headers of Zoho Desk webhook events than the kid is present in public keys present in the URL (desk.zoho.com/.well-known/jwks.json).
Slowness
Hi I am facing issues of slowness
Issues with plugin-manifest.json
Hello community, I just began creating an extension for our company, as we customers, which write e-mails to different departments. So now I want to create a widget, which checks, if the customer has more then one open ticket. The problem is, that after
Can we get all ticket list without limitation using zoho api once?
Hi support team. I'm using zoho api nowadays. I have a question. I'm trying to get all tickets using api. But I noticed the api that get ticket list has a limit. The limit is 100. I don't wanna call lots of times to get all ticket list. It takes much
Problem mentioning a user in Zoho Desk API
Hello ! I would like to ask for help. I'm trying to make a request to the Zoho Desk API, URL: https://desk.zoho.com/DeskAPIDocument#TicketsComments To create comments and would like to mention a user, according to the documentation you need to send zsu[@user:{zuid}zsu
Customer Feedback receive via API
Hello Support Team, We are looking for the customer in our site to rate the support agents after ticket closure in our platform instead of mail. Is there any API that will help me to post the link with the message of the Customer Feedback Screen where
Desk API Downtime
Ever since I started using the Desk API I have seen extremely frequent downtime. Every 15-60 minutes we receive a response from a Desk API call of: Zoho - Temporarily Unavailable Our service is temporarily unavailable. We are currently working to restore it. Why is the API so unreliable? What can we do to fix the stability of the API?
How to set a custom field (Pick List and Multi-Select) through Desk API?
Hi, I'm following Zoho Desk API's documentation and I couldn't figure out how I can set my custom fields to the proper Pick List or Multi-Select option. Now I found out that these fields can be set as their plan text values (obviously using the "cf" key,
Summary field is truncated in thread returned from API
I am using the API to get all the threads of a ticket. I retrieve the ticket, then I list the threads and then I get each thread. The issue that I am having is that the 'summary' field of the retrieved threads is being truncated - POST https://desk.zoho.com/api/v1/tickets/230399000060471954/threads/230399000060492062
Keeping track of possible changes
Hello, What's the best way to keep track of any changes to the Zoho Desk API? I.e. if an endpoint changes or requires a different payload etc etc.
How to generate oauth access token with the help of api only , No redirections and two steps ?
I need to embed zoho tickets api in an application so i am using tickets api in my rest api but the main problem is token generation. Other companies provide one token which we can use it everytime when we make request but here in zoho we have to go through two step gui process to generate auth token which is not feasible if i have to show tickets in my admin panel because oauth token have expiry time and refresh token can only be used 10 times , I guess ? So i basically want to know that if i can
Zoho Desk API Custom Module not all data is showing up
When i get a record by id for my new module: responseDetailed = invokeurl [ url :"https://desk.zoho.eu/api/v1/cm_tickets_CM/" + record.getJSON("id") type :GET parameters:"" connection:"desk_connection" ]; The response doesnt contain all fields, the field
when running the merge api, invalid_data api response due to merging ticket in recycle bin; but there are no tickets in the bin
Below is the error that I'm facing. I initially tested my code in sandbox and it worked great. I copied it over into production and started to catch the error. I checked the recycle bin and there were some "test" tickets that I did not know about. I removed
UNSUPPORTED_MEDIA_TYPE when using the end point /sendReply
Hello there, I am trying to do the following in a custom function: 1. render template 2. add information to template, which I can't configure directly in template (placeholders are not offered) 3. send template as ticket response Unfortunately I always
Is there a listing of special characters that not allowed in picklists
Is there a list of which characters are classified as "reserved" or "special" that are not allowed in picklists?
Fetch only opened tickets
I am trying creating a custom function to only fetch records with statusType = Open. orgId = "xxxx"; query = Map(); query.put("statusType","Open"); resp = zoho.desk.searchRecords(orgId,"Tickets",1,200,query); info resp; But I am getting this error: {"errorCode":"UNPROCESSABLE_ENTITY","message":"Extra
Zoho Desk API : Update an articles returns Unsupported Media Type error
Hi, Our domain name recently changed and unfortunately we cannot create a 301 redirect to our new domain. This results in us having to update our domain name references in our ~500 Zoho Desk articles and ticket answers. Since doing a bulk search and
How to create a validation rules in Zoho Desk.
Hello Team, In Zoho Desk, a validation rule needs to be created.depending on departments and department heads, therefore kindly provide a way to accomplish this. Thanks & Regards, Thisai Moorthy.
Get custom fields - Creating FSM Work Order from Ticket in Desk
I have created a custom function to create a Work Order in FSM from a Ticket in Desk. I would like to have some other specific information to come across from the Ticket and populate in the work order. Ticket ID (from Desk) to replace the Work Order Name
How do I put a date into a custom field?
I'm trying to build a code where I need the field I created, "Created Time", and populate it with the current date whenever the ticket is created. Every time I run my code, however, I receive an error: {"errorCode":"UNPROCESSABLE_ENTITY","message":"An
Creating a task in Deluge like in a workflow
Hello, I'm wondering if it's possible to trigger creating a task within a custom function, but basing it on a template like in a normal workflow? The problem with sticking to workflow creating my tasks is that it just doesn't care about duplicating, and
Desk API - what is the correct way to associate a new ticket to an account.
We are trying to automate the creation of tickets that are linked directly to an accountId Some background. When we onboard a new customer, we create their new account in Zoho Desk that contains all of the company details for that customer, and we link
API to get Spam Tickets.
Currently the result of Ticket Search API does not include spam tickets. Is there any params or filters need to be added for Ticket Search API to list spam tickets or Is there any another API that lists spam tickets? Please provide the API details.
Workflows/scripts/custom functions stopped working after deactivation of the admin user who created them
Hi there, one of our admins left the company, so I had to deactivate his user. Sadly, this results in chaos, because nearly all of the workflows, scripts and functions he created in Desk, Analytics and Flow stopped working. We changed the neccessary connections
Ticket not refreshing when comments added via custom function
I have a custom function in Zoho Desk that triggers on a field update workflow which is working well, however the ticket does not reliably refresh to show changes. In particular, I am adding a comment to the ticket thread to show important information
Desk REST API - tickets attachments SCOPE_MISMATCH error
Hi there, We are trying to add file attachment to Zoho Desk Tickets using /attachments REST API. We have created a token with scope Desk.tickets.ALL Was stated in your API documentation. When using this token, we are still getting { "errorCode": "SCOPE_MISMATCH",
ZOHO Desk : How to fetch the date and time of ticket status changed from Status A to B.
There is a requirement where we are writing a custom function to send an email notification to the client if no activity happened on the ticket since the 7th day or the 10th day after the status changed from A to B. For the same, I am writing a function
Zoho Desk Search API
Hello, I came across some issues on accessing the Zoho desk search API. I have my scope of Desk.tickets.ALL,Desk.search.READ, I get an error on query though i already generated an access token and used it in my Authorization Bearer. { "errorCode": "SCOPE_MISMATCH",
Delete Ticket Comment API Can't Delete Other Agent Comments
I have a script to search for comments with a specific tag, then I want to delete that comment. It's a pretty basic script. My connection is using a generic "service account" to handle our functions, that account is a full admin and the connection has
Creating lead from e-mail content body in Zoho Desk
Hello! As we are collecting leads from different sources (including our website) that are transferred to specific e-mail address, we are experiencing problems with turning these e-mails into leads. All these e-mails containing lead information are creating
Search for fields with null values
Hi all, I'm writing a custom function in Desk. Part of this function must search for all tickets that are unassigned in a certain department. This is the part of the code: unassignedTicketSearchCriteria = Map(); unassignedTicketSearchCriteria.put("assigneeId",null);
Next Page