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

podio api: get the latest revision date of a single field or an app

Context: I'm building a Node app to backup our Podio apps' calculation fields via the Podio API; they are saved as flat files and version controlled with Git. We want to have the possibility to edit the text files locally, commit and then push back…
jrgd
  • 519
  • 3
  • 25
1
vote
1 answer

Podio Oauth - refresh token lifespan

I am currently working on Podio integration and I have stumbled upon articles which do not give clear answer whether refresh_token expire on its own and what is the exact flow of obtaining new refresh token in such case. The articles: Podio Refresh…
Raidmaster
  • 603
  • 2
  • 7
  • 15
1
vote
1 answer

Want to send real estate/property data from podio to wordpress

My property management company uses Podio to store property data. I want the ability to send that property data directly into my WordPress website. Essentially, once all the data is in, I want it to be pushed directly to the website. Are API hooks…
mrgrinch
  • 15
  • 3
1
vote
1 answer

Is there a workaround to avoid error when saving PKTItem containing a 'Calculation' field?

If a PKTItem contains a 'Calculation' field, save() fails: item["owner"] = myProfile item.save() .onSuccess {(savedItem : PKTItem!) in print("new owner is me: \(myProfile.name)") } .onError {error in print("Error:…
tdnelson2
  • 555
  • 1
  • 4
  • 13
1
vote
2 answers

PODIO API call get excel using CURL, authentication error

I'm trying to follow this tutorial about REST API call of PODIO using CURL on my localhost. I was able to get through on the step on getting the app authorized and I have now the authorization code on URL. But it seems I'm not getting response for…
MarlZ15199
  • 288
  • 2
  • 17
1
vote
1 answer

Retrieving related items in podio php

My question concerns related items in Podio, I am using the library for PHP. The setup is as follows: I have one app where each item have related items. How do I retrieve those related items? It's either a hasOne relation or a belongsto. It isn't…
1
vote
1 answer

filter by contact field email in podio restful API

I'm trying to filter entries in my podio app by the email field (using the restful API URLs) that is located in the contact field. When I pull back the data I see that the email is deeply nested in the contact field object like this: { "type":…
zero
  • 2,999
  • 9
  • 42
  • 67
1
vote
2 answers

Podio create Task API does not work with reminder

I'm trying to use the node client for the Podio api to create a task with a reminder. The code works perfectly if i don't set a reminder, but if i try to set a reminder it gives me this error: message: { error_parameters: {}, error_detail: null, …
Jay Dee
  • 71
  • 5
1
vote
2 answers

Updating Podio Item using Podio API in C# .Net

I am new to Podio and consuming Podio API in c# .net. I am able to fetch item collections, create item using API and webhooks in .Net. But I am stuck up on updating item. I am using webhook on item update of ITEMX.Update. But I am getting error…
1
vote
1 answer

What is external_id in Podio API?

What is it's purpose and what are good practices about it? Should it be a random number? A string with meaning? It doesn't seem like it's set automatically when an item is created in Podio. I want a unique id to differentiate different items in a…
Matt
  • 2,232
  • 8
  • 35
  • 64
1
vote
2 answers

Fetching all Podio item collection using Podio API for .Net

I am using .Net API provided by Podio. By default it fetches only 20 items per request. If we set filter limit to 500 (Which is max for podio) I can fetch items in sets of 500 for all items. But here I am facing issue how to iterate these items…
1
vote
1 answer

How to update a field with a new value using the REST API?

I am using Podio and I want to be able to update items using the PODIO RESTful API. I more specifically want to PUT plain text into an item field. I have successfully updated the field in question in accordance with the instructions. However the…
rabbitco
  • 2,790
  • 3
  • 16
  • 38
1
vote
1 answer

Podio JS: Cannot successfully subscribe to push service

What I want to do I want to subscribe to push notifications notifying me when I make changes to items in Podio. What I have done to achieve this I am using the Podio JS library and have read the documentation and gone through the detailed example. I…
rabbitco
  • 2,790
  • 3
  • 16
  • 38
1
vote
1 answer

Are there any ports that need to be open for the Podio APIs

Are there any ports or anything that need to be open to make API calls work. We are making a call to podio.authenticatwithapp from our production www server and the call is failing. We make the same call to the same app from our intranet and the…
1
vote
1 answer

Get Podio app_id in Get View API using PHP Library

I am using Podio API to get a view using Podio PHP library: PodioView::get( $view_id ); The sample response is: { "sort_by": How the results should be sorted, see the area for details. "sort_desc": True if the result should sorted descending,…
Arun D
  • 2,369
  • 5
  • 27
  • 39