blakmatrix / node-zendesk

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

Home Page:https://blakmatrix.github.io/node-zendesk/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

categories.list returns 404

devinparker opened this issue · comments

Using the categories method listed here, I'm getting a 404 response.
I'm able to pull user lists and other things so i'm assuming there is an issue with categories. please help!

here is the code:

client.categories.list(function (err, req, result) {
    if (err) {
      console.log(err);
      return;
    }
    console.log(JSON.stringify(result[0], null, 2, true));//gets the first page
  } )