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
1 answer

Reading and setting tags using the PodioKit

I try to set an item's tags using the PodioKit-API in Objective-C/Cocoa. The only thing that looks like tags was the definition of PKTReferenceTypeTag inside the PodioKit-Pod. I didn't find any information inside the API manual. The tag field is…
ShooTerKo
  • 2,242
  • 1
  • 13
  • 18
0
votes
1 answer

PODIO PHP API, existing contact is not returned

I am trying to check if a contact exist already before creating it. below is a sample of my code, $contact_fields_index = array("name"=>"Paul Pierre", "mail"=>"paul@barnardmail.net"); $existingContacts = PodioContact::get_for_app( $PODIO_APPID ,…
0
votes
1 answer

PHP API Client, PodioItem::filter() does not return all results

I am beginning to learn the PHP Client Library and started with "Hello World" example on http://podio.github.io/podio-php/. I basic script is working and does return a result (I have the client id/secret and the app id/token set up). When I echo the…
Coreigh
  • 5
  • 2
0
votes
1 answer

Relation implementation (Parent and children)

In the context where we have Projects that contain Tasks (two Apps), which one is better and why? In the Projects App, add a relation field to its children Tasks. In the Tasks App, add a relation field to its parent Projet. On the Podio API POV,…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
0
votes
1 answer

Placing values for longitude and latitude into a map field via PodioKit API?

I automatically read out the location data from images and want to use this longitude and latitude and set them for the value of a location/map field using PodioKit. I already tried Google maps URL…
ShooTerKo
  • 2,242
  • 1
  • 13
  • 18
0
votes
1 answer

Writing a URL to an embed-field using PodioKit

I hope to find some help to diving deeper into Podiokit, the ObjC-API to Podio. I try to set a link-field's value to a URL. My first simple try looked like this: NSDictionary *embedAttributes = [NSDictionary dictionaryWithObject:…
ShooTerKo
  • 2,242
  • 1
  • 13
  • 18
0
votes
1 answer

How to all items data in Podio API

I am trying to get all items data using the Offset parameter. I have around 4500 numbers of data. Using PHP cURL code to retrieve all items (REST API). But how do I use the offset parameter along with maximum limit of 500?
0
votes
1 answer

Webhook + Server-side Authentication

I have a user provide me the organization he wants to Sync with our system. We create the hooks afterwards for each App of the Organization. The only workaround I found is to ask for each App ID and Token or the username authentication. How can a…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
0
votes
1 answer

Podio get item by reference

I try to get references of a specific item using Podio's get_references method in PHP (https://developers.podio.com/doc/items/get-item-references-22439). Usually, when there's nothing to return, NULL is returned, but this time undefined is returned.…
Mathieu Smith
  • 378
  • 1
  • 13
0
votes
1 answer

Get newly created Podio-PHP item id from PodioItem:Create

I am trying to create new items in four apps apps via one form -- some the items will become app references. For example, I first create an Entity item, then a Person item and relate the new Entity to the Person via an app reference field in the…
James Holland
  • 118
  • 1
  • 7
0
votes
1 answer

Error parsing string to int in Podio

Anyone knows why the calculation field returns an error when converting a string into an integer? var $prix = Max of Prix de vente; //Value is 2000.00 var $titre = All of Nom du produit; var $nbr_heure = $titre[0].substring(0, 3).trim(); //Value is…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
0
votes
1 answer

Multiple authentication in podio php api

I have created an app using the podio php api. The logged user will authenticate with his refresh token. Podio::authenticate('refresh_token', array('refresh_token' => USER_REFRESH_TOKEN )); In some cases, I need to add the user details in to…
Manu
  • 150
  • 3
  • 15
0
votes
1 answer

Podio PHP API, file doesn't upload, no errors

I'm trying to do something with Podio API, I'm a beginner. So my code is: PodioItem::create($app_id, array('fields' => array( "title" => ($name . " " . $surname), "adres-e-mail-2" => $email, ), array("file_ids" => $file->id) )); Item is created…
Avat
  • 3
  • 1
0
votes
1 answer

How to remove null from Podio calculations (JavaScript)

I have simple Podio calculations field as follows to concatenate First+Middle+Last names together as Display Name. First name +" "+ Middle name +" "+ Last name Problem is that sometimes Middle name is empty followed that concatenated Display Name…
0
votes
1 answer

Get Item ID for Newly Created Item - Item ID Is Blank PHP Podio

I am using the Podio PHP API. I am trying to get the item id from a newly created item. Unfortunately, it appears that the item_id is blank/null. I am not sure where I am going wrong. Here is my code: $create = PodioItem::create(#####, array('title'…
Alex
  • 196
  • 5
  • 22