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 App Create not respecting Field external_id

I'm running into an issue with the Podio App Create API call: https://developers.podio.com/doc/applications/add-new-app-22351 It does not appear to respect external_id for fields. For example, given: ... [fields] => Array ( [0]…
1
vote
1 answer

Podio Webform Redirect Not Triggering Analytics Goal

We set up a webform on our home page with a redirect to a thank-you page with a Google Analytics Goal set up when someone reaches the page. I've tested it and it works if you just go to the page, but the redirect from the webform submission does not…
Jay
  • 11
  • 1
1
vote
1 answer

PodioError: File uploads are only supported on the server right now

I am getting an error while uploading file into Podio, not quite sure what it means. The response says: {message: "File uploads are only supported on the server right now." name: "PodioError", status:undefined, url:undefined} I am using podio-js…
Fuzzy Neo
  • 31
  • 6
1
vote
1 answer

get Podio Activity / all revision API

Is there an API call to get all fields revisions? Just like the activity on Podio? The get all revisions return individual ID and no details.
Gingy
  • 361
  • 1
  • 3
  • 9
1
vote
2 answers

Error in file uploading Podio API

Can someone please help me in uploading file in Podio? I am new in Podio library so I am trying but getting lots of errors. Warning: realpath() expects parameter 1 to be a valid path, resource given in…
sonu
  • 23
  • 4
1
vote
1 answer

In Podio-Globiflow, what is the workaround for function array_rand?

I'm trying to create a function to fetch one or more random entries from my array but I'm having an "illegal call" array_rand error on my flow. Then I realized that not all PHP functions are supported through GlobiFlow, so I was hoping that there's…
Aurous
  • 211
  • 1
  • 3
  • 11
1
vote
2 answers

Podio error when getting apps

Error ErrorException: array_merge(): Argument #1 is not an array in /my/server/vendor/podio/podio-php/lib/PodioObject.php:200 Stack trace: #0 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'array_merge(): ...',…
Nathanael
  • 954
  • 3
  • 19
  • 39
1
vote
2 answers

'Connection to Podio API failed: [35] Unknown SSL protocol error in connection to api.podio.com:443

Using simple podio api things, but overnight I have this message: Fatal error: Uncaught exception 'PodioConnectionError' with message 'Connection to Podio API failed: [35] Unknown SSL protocol error in connection to api.podio.com:443 No SSL…
1
vote
1 answer

Podio filter items from app and return only some fields

How do I retrieve only some fields of the filtered items? I have tried this: $filtered_values=PodioItem::filter( $app_id, $attributes,array('external_id' => array('last-name'))); But it also returns the other fields (not only the last-name field of…
Andreea Onica
  • 315
  • 5
  • 13
1
vote
0 answers

PodioConnectionError ~4/5 times on every API call w/ PHP Library

We are getting this error ~4/5 times from the Podio PHP Library: PodioConnectionError: Connection to Podio API failed: [6] Could not resolve host: api.podio.com; Name or service not known This happens on any API call as far as I can tell. I have…
1
vote
1 answer

Cannot declare class PodioItemField, because the name is already in use

I'm trying to use Podios PHP client library to create a new item in a Podio app. I use the code from their example page but at the moment I try to: // Create a field collection with some fields. // Be sure to use the external_ids of your specific…
Maxi
  • 307
  • 1
  • 3
  • 13
1
vote
1 answer

Toggle hidden fields in Podio via .NET API

We are trying to hide fields in podio via the api using the application service UpdateAnAppField method. We are able to use this call by passing in appID, fieldID, and a FieldConfig object. We were able to change the label of a field in podio,…
Damon Quire
  • 130
  • 8
1
vote
0 answers

Assigning App Item Field value to point to an existing item in Podio using Podio API Importer Service

We are trying to assign the app item field to an item that already exists in podio using a cell on our excel sheet that contains the item's ItemId. The documentations is as follows: App: { "app_id": The id of one of the referenced apps the sub…
Damon Quire
  • 130
  • 8
1
vote
0 answers

Podio .Net API Importer value checking

We are using the import API functionality to create items in podio (personal information items) which is all working fine, however, we have to then attach other podio sub-items to the first ones that were created(counseling sessions). These items…
Damon Quire
  • 130
  • 8
1
vote
1 answer

Podio does not parse locations sent through API

In our Podio application we are trying to get all the contacts from our website, including their addresses. We need to be able to filter contacts by country and that is only possible by using location fields. The problem we have is that locations…
bMain
  • 324
  • 3
  • 11