Questions tagged [podio]

Use this tag if you have a programming question about Podio. Podio is a cloud-based collaboration service that provides a web-based platform for organizing team collaboration, business processes, data and content in project management workspaces. For non-programming questions please refer to Podio's Help Centre directly

Podio is a cloud-based collaboration service that provides a web-based platform for organizing team collaboration, business processes, data and content in project management workspaces.

Usage

Use this tag if you have a programming question about Podio’s API usage, or any of its SDKs (see below for links to each one of them). If you're about to ask your first question here, please visit How to Ask to have a better chance of getting your question answered promptly and correctly. Be sure to check if your question have been asked already by using SO’s search capabilities. You can also browse the available questions before posting a new one.

General Questions

Please don’t post general support issues here, like questions about your account, organisation, contracts, billing, features, or even technical support not related to programming with Podio’s API.
Please refer to Podio's Help Center for all these inquiries.

External Links

549 questions
2
votes
2 answers

Podio WebHooks RequestBin Testing

I want to test Podio Web Hooks (item.update) through RequestBin. I have created WebHook and it shows in my account. When I created i got one request for Verify on RequestBin URL. But in Podio it is showing as Inactive. Kindly let me know how can I…
Mayur Shah
  • 21
  • 1
2
votes
1 answer

Podio API: Items that were referenced right before are sometimes missing in list of references

I already asked this question in the Podio Partners workspace. As StackOverflow is the official Podio developer forum, it makes sense to post it here, too. We experienced a strange behavior of the Podio API. In short, when fetching references via…
stefan_mdt
  • 21
  • 1
2
votes
1 answer

How to update a Podio category using PHP API

I'm using a webhook to kick off a series of PHP scripts that take advantage of the Podio PHP API. I've tried using several different API calls but haven't been able to sort this out. This is a test file I'm using so the actual logic of what its…
Wormfishin
  • 23
  • 3
2
votes
1 answer

ShareFile user invite to Podio workspace using API

We are trying to add members to a Podio workspace using API. We are able to do this in normal Podio with level 2 API key. But the same code is throwing the following error when we try to do this in Sharefile Podio (authenticated with ShareFile…
Akbar Badhusha
  • 2,415
  • 18
  • 30
2
votes
1 answer

Why does Podio return an unauthorized response when I am submitting a valid access token?

We have implemented a central token store for making multiple Podio API requests from AWS Lambda using the same access tokens. I have been seeing frequent "unauthorized" exceptions returned from Podio. When I use the token from the "unauthorized"…
Alex Shull
  • 58
  • 5
2
votes
2 answers

Podio PHP API authentication

I have a puzzle with Podio PHP API authentication. I can't get something done without the following fatal error. I do this: Podio::authenticate_with_password('aaa', 'bbb'); and I get this: PHP Fatal error: Uncaught PodioRateLimitError: "You have…
Mathieu Smith
  • 378
  • 1
  • 13
2
votes
1 answer

Uncaught PodioBadRequestError: "Must specify either 'embed' or 'url'"

I need to set value for an embed field in Podio, and this is my code: $field_id='pdf-property-information'; $options=$item->fields[$field_id]->values; if(empty($options)) $item->fields[$field_id]…
Andreea Onica
  • 315
  • 5
  • 13
2
votes
0 answers

Podio authentication Server-side flow in iOS 11 browser: auto opening in native app

I am using Podio API's Server-side authentication flow in my web application. It it working fine in desktop and mobile browsers except in iOS 11. As part of OAuth2 flow, when redirected to Podio authorization endpoint…
Ajmal VH
  • 1,691
  • 1
  • 13
  • 27
2
votes
1 answer

Flaw in Podio Date fields using the API

So i've found a flaw in the Podio Date fields when updating them via the API and its rather frustrating. When getting and setting Date fields via the API it pulls/requires it to be set, in UTC time. It then converts to the user's Timezone based on…
2
votes
0 answers

Podio Android SDK item create API call error "Object not found"

I have a problem with the Podio SDK on Android in the following scenario: I have uploaded an image to Podio from our server in a php script and returned the file_id to my Android app via http. The id seems to be valid, but when i try to create an…
Silicium
  • 21
  • 2
2
votes
1 answer

Create Podio App Workflows using API - PHP

I'm using Flows API to create new workflows. API: https://developers.podio.com/doc/flows/add-new-flow-26309928 I've prepared the attributes properly (by referring the API documentation). It is not working as expected and returning an error while…
2
votes
1 answer

PODIO php API call, get array offset of all item fields value using filter by app ID

I'm new in API thing, I'm using PHP CLient of PODIO link here, I want to get all fields value of all items. The code below is not working, but if I used PodioItem::get_basic(item_id), this work to get item related values but I want to get all fields…
MarlZ15199
  • 288
  • 2
  • 17
2
votes
1 answer

podio API JS browser authentication and API calls

I'm quite newbee on API thing, been reading the documentation here for JAVASCRIPT client but I can't make things work, even on authentication part. I already have the client ID and ClientSecret from PODIO itself. Basically, I want to get all podio…
MarlZ15199
  • 288
  • 2
  • 17
2
votes
1 answer

Podio webhook unverified

I created an app a year ago and verified all needed webhooks. December 14th 2016, some webhooks became unverified, despite of the fact that they were created and valided a year ago. I looked into Podio's status page, nothing happened that day. I'm…
Mathieu Smith
  • 378
  • 1
  • 13
2
votes
1 answer

Creating item with podio api for PHP

I am trying to Create an item in the podio API for PHP. Here is my code: Podio::setup($client_id, $client_secret); Podio::authenticate_with_app($app_id, $app_token); // Create a field collection with some fields. // Be sure to use the external_ids…
Matt
  • 2,232
  • 8
  • 35
  • 64
1
2
3
36 37