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
0
votes
0 answers

Retrieve all images files (RAW) from the entire PODIO space

Our organistation has to move out of PODIO and want to save alle the image files from the entire PODIO space. Not just one app, also from STATUS and all workspaces. Has anyone a ready made script for it? PLS help! Regards Reinhard
0
votes
1 answer

Unable to Upload or Update Fields in Podio via API in Python, despite Successful Authentication

I am working on a Python script to automate file uploads and field updates to a Podio application. I am using the requests library to send HTTP requests to the Podio API. I am able to authenticate successfully using client credentials and I can…
AC Lotusi
  • 1
  • 1
0
votes
1 answer

How to download file from Podio?

I use the API developer from Podio and get the files URL as: https://files.podio.com/1394450000 Downloading with access token sent gives me an a Login Page (Unauthorized). How to download file with HTTP API? PS: I previously logged in with my data…
Maximiliano Sosa
  • 388
  • 1
  • 7
  • 18
0
votes
0 answers

What is the difference between "Create task with reference" and "Create task" in the Podio API?

I would like to create a task with a reference to a specific workspace using "Make an API Call" in Make (Integromat). Perhaps I should use "Create task with reference". However, if you check the Podio API documentation, you will find that "ref_type"…
0
votes
0 answers

workflow not working in the Globi flow Citrix Podio

There is an invoice app in podio and data is coming from that app and we are printing that data through a php code loop which is not working correctly.The main error is that this loop is not working to print description and amount. Below is the…
0
votes
1 answer

Could not build Objective-C module 'YogaKit'

require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' platform: ios, '12.4' prepare_react_native_project! pod 'mailcore2-ios' pod…
Neeleshwar Kumar
  • 335
  • 3
  • 13
0
votes
0 answers

Get the items of a view with some of the fields of each item

I'm trying to get a list of items of a view with only the fields I need because I don't need all the fields of each item. from pypodio2 import api podioID = os.environ.get('PODIO_ID') podioAPIKey = os.environ.get('PODIO_APIKEY') podioUser =…
Alex
  • 1,230
  • 2
  • 24
  • 46
0
votes
0 answers

How to get all possible options of a category field with Podio-API

I am building a form using the podio API and Podio-php library. It connects to an app in podio, with fields already defined, and the form creates an item for that app. One of the fields is a category field. I would like to be able to get the…
omnikin
  • 1
  • 1
0
votes
0 answers

Pypodio2 example ValueError

I am using the Podio API for the first time and getting some errors. I installed the pypodio2 package via: pip install -e git+https://github.com/podio/podio-py.git#egg=podio-py After adjusting the client_id, client_secret, username, and password, I…
Jeffrey
  • 13
  • 6
0
votes
0 answers

Podio API - getting the current revision of an item gives a 404 error

I am experiencing an issue where the Podio API returns a 404 error when trying to get the current revision of an item. I have also noticed that this works sometimes and fails sometimes - it’s random. Also, it seems to fail more when trying to get…
Eli
  • 1
0
votes
1 answer

Podio curl calls getting unauthorized error even with app token

I'm trying to get familiar with the Podio API by initially retrieving items from an existing app. Ultimately, my use-case is to read/write items for a team whose needs have scaled into the realm of automation. Authenticating as an app, I've…
0
votes
2 answers

Sending Object Arrays as JSON using FormData

I am sending a FormData object to an endpoint. A phone number needs to be formatted as this JSON: "phone": [{"type":"main", "value":"#"}, ...] or it gets rejected. A single object with a two-pair of keys and values in an array. const doStuff = () =>…
Nathan Nye
  • 25
  • 1
  • 5
0
votes
1 answer

Non-deterministic response to podio api call

My company uses a systemd service that makes rest api calls to the podio API in a python wrapper on a services server. The process takes in bugsnag bugs, checks that a podio bug item with that external ID already exists, and then creates a new podio…
0
votes
1 answer

Should I use NoSQL for a project management app like Citrix Podio?

I'm thinking about developing an app similar to Podio, where you can create different "Apps" with personalized fields. I understand that this couldn't work on a SQL database because the fields (columns) would have to be pre-defined in the table, but…
Nono-Man
  • 37
  • 1
  • 7
0
votes
1 answer

Podio API query

I have podio data with more number of column, but we need to fetch 5-6 column data through API. I attached column name screenshot. If we need only for example order id, city, country then how to write API query? /item/app/{app_id}/filter/ If it…