node-zendesk icon indicating copy to clipboard operation
node-zendesk copied to clipboard

A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.

Results 33 node-zendesk issues
Sort by recently updated
recently updated
newest added

could you make an example for HelpCenter? Or when you say ad -hc or -helpcenter parameter Do I add this when I create client?

Due to dynamic/runtime `requires` (`client.js:95`), tools such as esbuild won't include the runtime libraries when producing a runtime bundle (see also: https://github.com/blakmatrix/node-zendesk/issues/282) Can these `requires` be done explicitly in order...

My code looks like this ``` var zendesk = require('node-zendesk'); var client = zendesk.createClient({ username: '**MY_EMAIL@ID***', token: '***MY_ACCESS_TOKEN_WAS_HERE***', remoteUri: 'https://**MY_SUBDOMAIN**.zendesk.com/api/v2', oauth: true, debug: true }); client.users.list() .then(function(result) { console.log(JSON.stringify(result[0], null,...

I need to do a huge list operation (300k) I have setup throttle as suggested in #62 however I still have the Zendesk error ``` (node:5617) UnhandledPromiseRejectionWarning: Error: Zendesk rate...

Hi there ! We would like to use Zendesk events through product sunshine platform. Are there predefined functions to add events and profiles in zendesk support?

Hello, i'm using version `1.3.0` and node `12.16.1` but i am getting random socket hang up errors trying to perform several different api requests. This is how i am initializing...

Its well hidden, but Zendesk publishes an OpenAPI spec [here](https://developer.zendesk.com/api-reference/ticketing/introduction/#download-openapi-file). You can then use https://openapi-generator.tech/ to generate a client. And then if (when) there are places where all that feels...

enhancement

**Describe the Bug** see code below, run with midway. can't get nice response with throttle enable. need config more ? **Example Code** ```typescript import { ILogger, Logger, Provide } from...

bug

**Describe the Bug** Types are not matching actual values returned **Example Code** ```javascript const ticket = await client.tickets.show(392005); console.log({ id: ticket.id, response: ticket.response }); ``` ![Screenshot 2023-12-15 at 00 26...

bug

Hello, i'm using version 5.0.10 but i am getting socket hang up errors trying to perform attachments upload This is an example of hat i am doing : ``` const...

bug