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

Podio .Net CreateItem app-reference

I'm trying to create a new item in Podio using .Net for an app that uses an app field that is referenced from another app ("sending-location"). I keep getting an error error 400, field.app.invalid, the referenced item is not valid. I'm trying to…
hdecastro
  • 5
  • 2
0
votes
1 answer

Result of FOR-loop if there is no related item

in a Podio calculation_field A I sum up the numbers of each related item (from another app) which contain "searchstring_1" in a text_field, in calculation_field B all related items which contain "searchstring_2" No problem with the following code -…
0
votes
1 answer

aggregating responses for a PodioItem:filter() call

I am trying to find a good way to combine multiple responses from PodioItem::filter into one array, or even one PodioItemCollection. Assuming there 221 items in a podio app, and I was using a limit of 100, then I would get 3 responses of 100, 100,…
aharkin
  • 15
  • 3
0
votes
2 answers

Podio and Mailchimp Integration

I have a few web forms on podio. Podio doesnt offer automatic emails to be sent to people they fill an webform on our website. We want to integrate it with mailchimp. Can some 1 help us to understand mailchimp for this purpose
0
votes
2 answers

how to know the details of app when a new app is created in podio?

I am calling a route on my server when a new app is create via webhooks. How to get the newly created app item details? I am running apps integration server to get the details, calling a route on this server, is there any easy of getting newly…
Kaphy
  • 459
  • 4
  • 10
0
votes
1 answer

Using PHP Podio library, cannot get ratings data via PodioItem::get($id)

I am using the latest PHP Podio library (4.0.1) and using PodioItem:get() to get an item from an app. I have found that I can retrieve the 'likes' (i.e. heart) ratings, but I cannot retrieve the voting ratings (e.g. five star or a custom vote I…
aharkin
  • 15
  • 3
0
votes
1 answer

Working with Podio API and accessing date time, is podio documentation incomplete?

I saw the question and the subsequent answer to Working with podio api, i get a DateTime object and cant exccess its values. The answer given did work for me, which was to use the format function, but it made me wonder if this documentation on podio…
aharkin
  • 15
  • 3
0
votes
1 answer

get created item details in webhook url of podio

I want to get the item name, item created by, item assigned in webhook url. like in webhook https://api.domain.com/v1/message?appname={{app_name}}&itemname={{item_name}}&itemassignedto={{item_assigned_to}} is there anyway like this?
Kaphy
  • 459
  • 4
  • 10
0
votes
1 answer

How do you get the value of a "embed"?

I have a link field called lien. When I get it from the API through the Item it belongs to, I receive the following array: [lien] => Array( [0] => Array( [embed] => 49935230 [file] => 129256002 ) ) I have no problem with the…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
0
votes
1 answer

podio: withResultListener compile time error in android

I try to build an android application to integrate with podio and get details from my podio account. while using the code Podio.client.authenticateWithUserCredentials(usr, pwd) withResultListener(new ResultListener() { …
gnts
  • 3
  • 1
0
votes
0 answers

Self-built Automator action does not work when used in Automator service or App

I wrote a Cocoa Automator action that uses the Pod PodioKit. Everything works fine when used in an Automator workflow, the method - (id)runWithInput:(id)input fromAction:(AMAction *)anAction error:(NSDictionary **)errorInfo is called and all steps…
ShooTerKo
  • 2,242
  • 1
  • 13
  • 18
0
votes
2 answers

Download file on Podio

I need to download all the attachments on a Podio app. I can get all the files id and their url, etc.. i just can't make the download. I've tried many possible solutions (get_raw(), file_get_contents, etc..). Lets say i have this file that i want to…
stackrocha
  • 405
  • 2
  • 8
0
votes
1 answer

How do I know the argument should be an object and not array?

$new_contact = PodioContact::create( 2144836, new PodioContact( array('name' => $name,'title'=>$title, 'organization'=>$org, 'phone' => $phone, 'mail' => $email) ) …
Armesh Singh
  • 405
  • 2
  • 5
  • 12
0
votes
1 answer

Manual Webhook trigger and "webhook.create"

Is it possible to trigger specific webhooks using the API? We programmatically create Webhooks on all target Apps and want those hooks to be triggered once after the installation. We though of adding a tag and removing it right away (or modifying…
Vincent Poirier
  • 4,298
  • 5
  • 21
  • 25
0
votes
1 answer

Get item filtered by specific tag and custom field

I would like to get an item filtered by a specific tag AND order by a custom date field (extern ID is 'date') I've tried multiple way according to the doc, such as PodioItem::Filter() with an array for the tag and a simple string too, but I didn't…
Mathieu Smith
  • 378
  • 1
  • 13