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
1 answer

How to get the Podio APP response detail level mini, micro or short?

At many place in the Podio API documentation, it seems that you can specify the level of details that will be in the response: Full/Short/Mini/Micro. For example in the Get App call https://developers.podio.com/doc/applications/get-app-22349 However…
2
votes
2 answers

Uploading multiple files with one request in Podio (suggestion)

Working with files from a third party application in Podio is a pain. The application i'm making is a replacement for the webform Podio provides. In some of these webforms, i need the end-user to upload up to 5 or 6 files. As of right now, you have…
Kjaal
  • 57
  • 8
2
votes
2 answers

How do make an external API call from a Podio App field?

I have a location field called origin and a field called distination. I am trying to calculate a third field called distance by using an address from both the Origin and the Destination field? What is the easiest way to achieve this? Here's one…
RL-Perf
  • 343
  • 2
  • 7
2
votes
1 answer

Podio Api - Create item error - "Invalid value null (null): must be Range"

I am trying to create an item with relationship field with multiple references like this. $collection = new PodioCollection(array( new PodioItem(array('item_id' => 425989858)), new PodioItem(array('item_id' => 425987845)) )); $response =…
arun kumar
  • 703
  • 2
  • 13
  • 33
2
votes
1 answer

Podio API : How to get a file id given an item id

Here's a Podio API question ... How do you get the file id that's associated with an item (given that I know the item id). I cannot find that on the API documentation.
2
votes
1 answer

How can I programmatically get the app token of an application that I create?

I am using the podio-php api to create an application, however the application that I dynamically create requires a webhook. Since the webhook requires the app_id and app_token of the app, how would I be able to programmatically retrieve the…
user3552401
2
votes
1 answer

"and" and "or" in JSON query filters?

I couldn't find the answer to either question below in the Podio API documentation (perhaps I just overlooked it at https://developers.podio.com/doc), and from looking through the old Podio developer's forum…
dmerrell
  • 21
  • 2
2
votes
1 answer

Golang access raw Podio field values

Hi Podio people (and maybe more specifically Andreas), I'm trying to dig deeper into the Golang API library but bumping into my rookie Golang skills. After doing a client.getItems(...) call I wish to loop over the fields inside of the items and only…
pjmuller
  • 79
  • 8
2
votes
1 answer

Creating Podio App via API

I am trying to create an app in Podio via API on my laravel web app, however whenever I call the PodioApp::create() function it returns with PodioBadRequestError in Podio.php line 289 exception. Now i'm not sure if I will need to request for a…
2
votes
1 answer

How to trigger "item.update" webhook on file upload?

I've setup the 3 item webhooks (create, update & delete) so I can sync and log some data on an external service. They all seem to work as inteded, except for the item.update, which doesn't trigger when a file is uploaded. It triggers when I change…
Birk
  • 351
  • 1
  • 7
2
votes
1 answer

Is there a neater way to convert a xlsx object to csv in Ruby using the podio gem

I'm working with the Podio application, and I made a tiny little script to grab data from my Podio database and put in an xlsx file, and convert it to a csv using roo. xlsx = Podio::Item.xlsx( , options = {} ) fname =…
user1428649
  • 83
  • 2
  • 7
2
votes
1 answer

Podio JS: Can I trust that the access/refresh token can only be used from a specific IP address?

I am developing my own app for customizing the behaviour of PODIO. I care very much about the security of my and my customers data. I therefore wrote the following test code: var api_key = { authType: 'password', clientId: 'foo', …
rabbitco
  • 2,790
  • 3
  • 16
  • 38
2
votes
2 answers

update podio category to no value

I have an app that has several fields in it and some of them have a category item that only has one value (Yes) we use that field to keep track of whether or not a client is using that feature in our software or not. We have it so that when the…
2
votes
1 answer

Podio item.update webhook to open a new link

I have setup a webhook in Podio for an item.update in hook_update_item.php file. What I want to do if an item has been updated, I want to open a link preferably in a new tab, here is the code that I have:
2
votes
3 answers

Podio file upload fails in Python

I'm trying to do an upload to podio but it fails. Following extract : c = api.OAuthClient( podio_pw.client_id, podio_pw.client_secret, podio_pw.username, podio_pw.password, source = "dit is een test" attributes = { …
mdecroos
  • 21
  • 1
1 2
3
36 37