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

categories.list returns 404

Open devinparker opened this issue 3 years ago • 0 comments
trafficstars

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
  } )

devinparker avatar Apr 20 '22 19:04 devinparker