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
2 answers

How to create an item in podio using await podioClient.ItemService.AddNewItem?

I am having problems creating an item in Podio in Visual Studio using dotnetcore2.0. I'm receiving an error on the line: await podioClient.ItemService.AddNewItem(appId, item); I have created items before and I cannot seem to find the problem with…
dtthom09
  • 311
  • 1
  • 13
1
vote
1 answer

PodioForbiddenError: "The app with id 123 does not have the right delete on item with id 12345"

The item to be deleted via API is in the corresponding app 123. It is being created from a user via the reference field of another app. PodioItem::delete($item_id); It actually used to work until a few hours ago. So I assume while playing with the…
leopold
  • 1,971
  • 1
  • 19
  • 22
1
vote
1 answer

Podio API for .NET - Cannot create item

I am using the official API for .NET and trying to add new item in app. This code had worked once but then something changed (not in the code) and it's not working anymore. Here is the code: { var podio = new Podio(clientId,…
Sasho
  • 11
  • 1
1
vote
1 answer

Export Podio items

I'm trying to export an XLSX from Podio but I get the following error: The app with id 11111 does not have the right export on app with id 11111 Ofcourse these are fake ID's but in the error message both ID's are the same. This is my…
Sander Bakker
  • 611
  • 2
  • 12
  • 32
1
vote
1 answer

Podio API Use Case - Please Advise

I'm running software (Software A) on our local server that has a number of contacts (ie, Name, Address, Phone, etc). Using the API from 'Software A', I'm looking to retrieve these contacts (ie, Name, Address, Phone, etc) and POST these contacts in…
1
vote
1 answer

Podio .NET client failing to deserialize item: JSON integer is too large or small for an Int32

Our Podio webhooks integration started breaking because of the following error: Using https://www.nuget.org/packages/Podio.Async latest version. JSON integer 2149591369 is too large or small for an Int32. Path 'current_revision.item_revision_id',…
LLL
  • 3,566
  • 2
  • 25
  • 44
1
vote
1 answer

Podio Webhook - What should the hook syntax be if I want to it to tigger if a specific field in a specific app contains a specific value

I am trying to detect when a user changes the status of an item in a Podio app. For example: I have an expenses app in Podio. I would like to be notified when the status of an item is changed. The field is a "Category" field type and Let's say…
1
vote
1 answer

Get file_ids subarray from PodioItem::get

I'm trying to download all the files attached to a particular item, but I'm having trouble accessing the file_ids subarray from the returned item object. I'm able to access pretty much every other part of it, like item_id, but for some reason, when…
1
vote
1 answer

Podio Calendar, how to get the calendar of a particular user

How can I get the calendar of a particular user? Im working on a Podio-to-calendar implementation and want to do that, but so far, I had no positive results. I can get all the events for workspace, app, etc using the examples and documentation in…
1
vote
1 answer

How can I get the email to comment in any item as the app in Podio?

Doing tests to get the email url and reviewing the documentation: https://developers.podio.com/doc/applications/get-area-22349 I get a response with data similar to this one: "mailbox": The mailbox to use when mailing to the app, It has the app id…
1
vote
1 answer

Syncing Podio with SharePoint List or Excel File

I hava an application on Podio that report incidents by users, i need to sync these inputs "items" with a SharePoint list or Excel file automatically instead of the Export function. i tried Zapier but it was limited for free plan, i also tried Simgo…
1
vote
1 answer

Podio ephemeral ports?

TL;DR - What is the ephemeral ports that podio uses?.. We have a dotnet core application running in AWS interacting with podio. The Network Access Control List blocks off some of the responses from podio when podio responds on the ephemeral ports. I…
1
vote
1 answer

How to get field data for an item using Podio PHP API

When using the Podio PHP API and after getting an item collection using: $item_collection = PodioItem::filter( $app_id, $attributes ); How can I get the value(s) of a field with an external_id of, for example, email? Currently I loop through all…
James
  • 311
  • 5
  • 17
1
vote
1 answer

Silent param not working for Update item field values

I'm using version 0.7.9 of the java client library for the Podio API. When sending a value of the true for the silent param, the item update is still displayed in the item's activity stream. updateItemValues(item.getId(), valuesUpdates, bSilent,…
1
vote
0 answers

Subscribe to multiple channel using Faye - Podio API

Here is the current code (subscription to a single item) podio.authenticate('password', { 'username': podioUser.username, 'password': podioUser.password }, function (response, body) { const item_id = 1234567; podio.get('/item/' +…
Nikhil
  • 1,450
  • 11
  • 24