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

Podio - Relationship app field implementation

A great thanks to @Andreas for answering my question at Podio : Troubles assigning reference for a Relationship app field, it helped me finding the special settings for all podio app fields. Anyway, I still can't assign referenced apps to…
2
votes
1 answer

Cannot update reference app field

I have an item with a referenced field to another app. A call has an assigned client. I use this library: http://podio.github.io/podio-php/ I followed this article: http://podio.github.io/podio-php/fields/ I want to update an existing item by…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
2
votes
1 answer

Validate webhook from Podio

i'm creating a PHP script to integrate with Podio.. I think i have all right, but i can't verify the webhook from the Podio website.. Can you tell me what i'm doing wrong? This is my code: require_once '../lib/Podio/PodioAPI.php'; require_once…
2
votes
2 answers

Podio API addItem call

I'm trying to implement https://developers.podio.com/doc/items/add-new-item-22362 Podio API addItem call in a nodejs module. Here is the code: var _makeRequest = function(type, url, params, cb) { var headers = {}; if(_isAuthenticated) { …
Alexey
  • 3,414
  • 7
  • 26
  • 44
1
vote
0 answers

Retrieving field values for previous Podio item revisions

I'm working on something that requires me to retrieve the previous values of fields from previous revisions. I'm trying to product a list of dictionaries in Python where each dictionary will have values for every field from an item at the time of…
1
vote
0 answers

Podio API calls fail with "404 - Not found"

I have scripts failing when executing calls to the Podio API returning an error: "404 - Not found" This happens mostly the first 2 to 5 times I run a script calling the API. Most of the times (but not exclusively) it happens during the…
Kamafeather
  • 8,663
  • 14
  • 69
  • 99
1
vote
1 answer

Get ratings for an item via API - Podio

I'd like to get information about a rating (fivestars) of one of an app item. I've tried to do it using two requests: /rating/item/1********9 and /item/1********9?mark_as_viewed=false Both via https://developers.podio.com/. I'm receiving only the…
Karol
  • 48
  • 5
1
vote
1 answer

403 Forbidden response from podio API using pypodio2

I ask this question having run out of ideas - I assumed I was doing something stupid but even if I am I can't figure out what... I'm new to python having drifted away from coding 10 years ago but I was reasonably proficient once :-D I've written a…
1
vote
1 answer

Fields calulated after the webhook

I use the podio API to create an item. In the form I have a few calculations. When I retrieve the item immediately after its creation, using the api, the fields are not calculated yet. The calculation is asynchronous, so that makes sense. When I use…
Jasper Duizendstra
  • 2,587
  • 1
  • 21
  • 32
1
vote
0 answers

Podio API sandbox broken: no response but status 500 in console

Trying to submit a request in Podio API sandbox gives no error nor response, apart from status 500 in the console. Anybody here who can fix it?
teeas
  • 11
  • 4
1
vote
1 answer

Python integration with Podio

I am not able to work with the Python library of Podio. I downloaded the GitHub repository to work on it. But getting an error. Code: from podio.pypodio2.api import OAuthClient c = OAuthClient( '************', '************', …
1
vote
1 answer

validating podio web hook to gitlab

I created a hook in Podio that calls a gitlab repository when a Podio item is changed. The repository then calls a pipeline that accesses the Podio API. The whole setup is working except that I am unable to verify the Podio hook: The Podio API…
user290865
  • 11
  • 1
1
vote
1 answer

How to create Items in Podio using podio-php?

Podio's API documentation differs from podio-php's when it comes to creating new Items. Based on Podio's tutorial, I would have to format each value according to its type, whereas podio-php describes using PodioItemFieldCollection to handle that…
HWD
  • 1,547
  • 7
  • 36
  • 72
1
vote
3 answers

get all items from podio api

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…
Rukhsar Ch
  • 73
  • 1
  • 7
1
vote
2 answers

How to limit Podio API output for complex item resources

Is it possible to limit API response from the POST /item/app/{app_id}/filter/ for a complex resources with a lot of fields set? I know there is fields param and it can be used with some predefined views, like items.view(micro), but this is not a…
Lukasz
  • 33
  • 3