1

I want to fetch items of app from podio in node js here is the code that am using to get items,

 podio.authenticateWithCredentials(username, password, function () {
        podio.request('GET', '/item/app/{app_id}/filters').then(function (responseData) {
          console.log(responseData);
          res.send(responseData);
        }).catch(function (e) {
          console.log('0-0-0-0', e);
          res.send(e);
        });
      });

an i always get this error

"No matching operation could be found. The path '/item/app/{app_id}/filters' was not found.."

is there any solutions ?

Rukhsar Ch
  • 73
  • 1
  • 7

3 Answers3

0

You need to replace app_id in this url '/item/app/{app_id}/filters' with actual url you must have got from podio api.

Ashish Modi
  • 7,529
  • 2
  • 20
  • 35
0

only replace {app_id} with the app id To get the app id and token:

Go to your app on Podio Click the little wrench in the sidebar Select the "Developer" option near the bottom On the following page you can get the app id and token

enter image description here

Rkv88 - Kanyan
  • 1,332
  • 2
  • 7
  • 15
0

You should use POST instead of GET method

Bhagwan Parge
  • 382
  • 1
  • 11