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
42
votes
5 answers

Does the refresh token expire and if so when?

I have read the PODIO documentation. I have in particular contemplated the following statement concerning use of the refresh_token: This request returns the same data as above, and you can continue to do this over and over again, to keep your…
rabbitco
  • 2,790
  • 3
  • 16
  • 38
5
votes
1 answer

PODIO JSON Feed to C# Objects polymorphism

I am writing a program to read a JSON string from Podio, and then convert the contents to c# objects. But while reading the feed, I came across a strange format; At the same hierarchy-level of object, sometimes the value of the field [value] is a…
ali zaib
  • 99
  • 8
4
votes
2 answers

How does the Podio API Endpoint to update a view work?

When I viewed the documentation for the "Update View" endpoint there was very little information available (see https://developers.podio.com/doc/views/update-view-20069949). The current documentation states that the endpoint accepts one parameter,…
Brandon Tweed
  • 348
  • 1
  • 15
4
votes
1 answer

Podio: which TimeZone is used while setting DateTime field value

While creating new item or updating existing item using Podio API, and setting DateTime field value to: 2016-10-21 14:15:00 (as example). Which timezone will be used to store this DateTime? E.g. request: app_id =
Pavlo - Podio
  • 2,003
  • 2
  • 10
  • 19
4
votes
2 answers

Podio file attached to item cannot be downloaded

I have an issue trying to download files attached to Podio items: podio.request('get', '/file/{file_id}/raw').then(console.log); The above program displays: {} This is a JSON stringified empty object (instead of raw file content). Details: The…
Pandaiolo
  • 11,165
  • 5
  • 38
  • 70
3
votes
2 answers

Getting all items of app with python library does not work

from pypodio2 import api # Authenticate as App podio_client = api.OAuthAppClient( client_id=PODIO_CLIENT_ID, client_secret=PODIO_CLIENT_SECRET, app_id=PODIO_APP_ID, app_token=PODIO_APP_TOKEN, ) # Set limit to 100 items =…
Stanko
  • 4,275
  • 3
  • 23
  • 51
3
votes
1 answer

How to get all the tasks for a specific appitem

I have spent the last 4 hrs trying to figure out how to get the list of Tasks that reference a specific AppItem. The following do NOT work: // Doesn't work // $tasks = PodioTask::get_all(array( // 'reference' => 'rmticket:' . $rmt->item_id, //…
3
votes
1 answer

Anyone else having trouble with Podio iOS app and Google Street View?

I have the following code within one of my apps which works perfectly well to show a static "Street View" of a given address: var prop = @propertyField; "![alt-text](https://maps.googleapis.com/maps/api/streetview?size=600x300&location=" + prop +…
jmp1979
  • 45
  • 5
3
votes
2 answers

The user with id # does not have the right view on profile with id #

I am attempting to add a contact to a contact field, the field currently has no information in the app. I originally attempted this through app authentication but found this post on Podio forum and this on here and changed authentication to user.…
APW
  • 420
  • 4
  • 15
3
votes
1 answer

App token is null in Podio API request

The code below returns an app object from the Podio API. $app = PodioApp::get( $app_id, $attributes = array() ); but the token field in the response is null. The user is authenticated server-side. How can I get the token field in $app?
Muhsin VeeVees
  • 190
  • 2
  • 2
  • 8
3
votes
1 answer

Update Podio profile picture using API

We were planning to make a Podio Out of Office extension so people can add start and end date and the profile picture will be automatically changed with an out of office version in that period. We cannot see a method to do that in Podio API…
Ajmal VH
  • 1,691
  • 1
  • 13
  • 27
3
votes
1 answer

Podio authentication read permission

I would like to use server-side flow to get read access to user's spaces. Here is my login URL https://podio.com/oauth/authorize?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=space:read But Podio asking me full permission. I tried different…
Jis Jose
  • 614
  • 1
  • 6
  • 15
3
votes
0 answers

Podio-PHP not reading array from while-loop correctly

I'm using Podio's podio-php for their API for saving data from a form to Podio, and haven't had any issues except this small but annoying one. When I use the $visit_arr-array, the fields in Podio are blank, but when I use the manually created array,…
2
votes
4 answers

Error while using Podio API - File Upload operation

I am trying to upload a file to Podio using file upload POST operation ( "https://api.podio.com/file/" ) using Python 3.7. Please find below the details about the code. # File Upload fin = open(input_path, 'rb') …
JJG
  • 21
  • 3
2
votes
2 answers

Twilio messaging service and studio flow

I am working on a project in Twilio and Podio, where I am using this code from Podio using POST POST IN PODIO FROM URL: https://[(Ref Setting) Setting Value 1]:[(Ref Setting) Setting Value 2]@api.twilio.com/2010-04-01/Accounts/[(Ref Setting)…
1
2 3
36 37