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 - how to set category field when create item

I am using php wrapper, try create an item, all is ok, item is creating, but I can't change status, tried different ways, but can't find right way. Need change status to "Closed" - http://prntscr.com/fsrwc3 Codes not works: $fields = new…
Toxa
  • 63
  • 1
  • 7
1
vote
1 answer

Roadmap for EOL of deprecated API functions

I support some platforms that use an old version of Podio-PHP-SDK (v3). Also, there are some deprecated functions still in use, such as PodioItem::get_basic. Does an official or unoffical roadmap for the EOL of API-functions exist? Your support told…
michga93
  • 73
  • 6
1
vote
1 answer

Podio API: Modifying an item with appId and appItemId

EDIT: I have figured out that I was trying to update by using appItemId (local for the app) in the ItemId field (global). The question now is how to update without using the global ItemId. I have setup a script to authenticate as an app. I can…
LLL
  • 3,566
  • 2
  • 25
  • 44
1
vote
1 answer

Podio: The sample code for the Python-API imports a module that I can't find anywhere

This is the sample code for authentication: from pypodio2 import api from client_settings import * #doesn't exist c = api.OAuthClient( client_id, client_secret, username, password, ) print c.Items.get_item(22342) It gives me…
Chisq
  • 117
  • 1
  • 9
1
vote
1 answer

How do I edit a bug in a Python 3 API that I have installed?

I've installed the Podio API for Python 3 and found that it imports urlencode from urllib (from where you apparently would import it in Python 2), instead of urllib.parse (where it seems to be in Python 3), making me unable to do pretty much…
Chisq
  • 117
  • 1
  • 9
1
vote
1 answer

How to Download all Podio Item IDs at once

I was wondering if there is a way to download all item IDs within Podio at once so I can upload this information into Zapier. Otherwise I would have to go into every single contact that I have (almost 2000) and then input it into an excel…
1
vote
2 answers

Webhooks not sending data to external application

Here is what I want to do: When an item is created within a certain app, a webhook sends the data contained within that item to an external application Same thing happens what an item is edited or deleted Naturally, I'm using the native Podio…
friendofdog
  • 79
  • 12
1
vote
1 answer

Authentication issues

I have been using the API with no problems for a long time. All of a sudden I'm getting this error: PHP Fatal error: Uncaught PodioError Request URL: Stack Trace: #0…
1
vote
0 answers

Filter Items by title with regex

I'm trying to filter items for a specific App. The problem that I have is that I would like to filter as I would with regular expressions and so "filters": { "title": "item" } Would return "First Item, Second Item, ..." for all the items that…
1
vote
0 answers

PODIO - PHP - API - How do I build an html table from data collected through PodioItem::filter?

I am attempting to get all of the items in my app that were created last week as a table to display on a report page on my companies internal website. In the end I would like to take this data and build charts with it in googles charts API. below I…
1
vote
1 answer

Is there any Podio Webhook Verification logs?

Since this morning, many webhooks were unverified and we are unable to verify them. These webhook worked for 2+ months. Our server does not log any POSTs from Podio (when we try to verify), but it logs any other POSTs from other sources as…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
1
vote
1 answer

Podio dotnet client library filter items with minimum field return

I am using Podio dot net client library, I would like to get items in an app (which I am able to) but this returned item with all the fields. I would like the response to only return certain fields. How can I achieve this? This is what i have got so…
snit80
  • 623
  • 7
  • 13
1
vote
1 answer

How to export comments section in podio using API

basically I just want to know, if there are ways on how to export excel sheet file in Podio with the comments section included in a certain app using API.
Brian
  • 11
  • 2
1
vote
2 answers

Podio API: how to set a value for an empty field with podio-php wrapper?

I'm trying to set a field value via API using podio-php. If the field was already not empty, the following snippet made according to the manual works fine: $item = PodioItem::get_basic( $item_id ); $field =…
1
vote
3 answers

Find the nth instance of a tag in XML document from Globiflow

I'm unable to use preg_match_all() in Globiflow (for Podio) due to their insistence on preg_match_gf(), which has similar functionality as the regular preg_match(). I have the following code: preg_match_gf("/
Josh D.
  • 15
  • 4