Integrations / Podio (GlobiFlow)

Connect Podio to Propera with GlobiFlow

Auto-underwrite every new Podio lead directly from Podio Workflow Automation (GlobiFlow), no Zapier or third-party tool in the middle. When a lead is ready, Podio calls Propera and writes the ARV, comps, and Zillow links back onto the item.

Loom walkthrough goes here (embed coming soon).

Overview

Podio Workflow Automation (still widely known as GlobiFlow) includes a Remote HTTP Call action that can POST to Propera's API and read the JSON response back into your Podio fields. That means a fully native Podio integration with no extra subscription beyond Podio Premium.

What you'll build

One GlobiFlow flow: trigger on item create or update → Remote HTTP Call (Propera) → parse the response → Update Item.

Before you start

Step 1 — Generate your Propera API key

In Propera, go to Account Settings → API Keys, click Generate API Key, name it (for example Podio), and copy it. It's shown only once.

Screenshot: the API Keys card in Account Settings.

Step 2 — Create a flow with a "ready" trigger

In GlobiFlow, create a flow on your leads app triggered when an item is created or updated. Add a filter so it only runs when a status field equals something like Run ARV, that way the analysis runs only when you say the lead is ready.

Step 3 — Add a Remote HTTP Call action

{
  "address": "[(Lead) Property Address]",
  "property_type": "[(Lead) Property Type]",
  "bedrooms": "[(Lead) Bedrooms]",
  "bathrooms": "[(Lead) Bathrooms]",
  "sqft": "[(Lead) Square Footage]",
  "year_built": "[(Lead) Year Built]",
  "comp_radius": "[(Lead) Comp Radius (miles)]"
}
Use your own field tokens. GlobiFlow tokens are [(Item Title) Field Label] — the part in parentheses is the app's item title (the singular item name, e.g. an app called "Seller Leads" has items titled Lead), and the labels must match your fields exactly. Swap both for whatever yours are called, and insert them from GlobiFlow's token picker rather than typing them by hand. Also wrap every token in quotes, including the numbers: a Podio number field can render with a comma (2,200) or be empty on a partly filled lead, and an unquoted token there would produce invalid JSON. Quoting keeps the body valid; Propera reads the numbers either way.

(See the GlobiFlow Remote HTTP Call docs.)

Step 4 — Parse the response and update the item

The Remote HTTP Call captures Propera's JSON response into a variable. Give it a name (for example propera) in the call's Capture Result setting. Then add an Update Item action and extract each value with GlobiFlow's preg_match_gf() function.

Three details make or break this step:

Map these calculations onto your result fields:

FieldCalculation
ARVpreg_match_gf('/"arv":\s*([0-9.]+)/', [(Variable) propera], 1)
Summarypreg_match_gf('/"summary_text":"([^"]+)"/', [(Variable) propera], 1)
Confidencepreg_match_gf('/"arv_confidence":"([^"]+)"/', [(Variable) propera], 1)
Comp countpreg_match_gf('/"comp_count":\s*([0-9]+)/', [(Variable) propera], 1)
Price / sqftpreg_match_gf('/"price_per_sqft":\s*([0-9.]+)/', [(Variable) propera], 1)
Run linkpreg_match_gf('/"run_url":"([^"]+)"/', [(Variable) propera], 1)
Comps (full list)str_replace('\n', "\n", preg_match_gf('/"comps_text":"([^"]+)"/', [(Variable) propera], 1))
Errorpreg_match_gf('/"error":"([^"]+)"/', [(Variable) propera], 1)

The comps_text field is a ready-to-paste block with one comparable per line (address, price, sqft, beds/baths, price per sqft, distance, sold date, and a Zillow link). Map it to a large (multi-line) text field. The extra str_replace('\n', "\n", ...) wrapper turns the JSON line breaks into real line breaks in Podio; without it the whole list still lands, just on one line. (Prefer the structured per-comp data instead? Every comp is also in the response's comps array.)

Note on Zillow links: Podio only auto-links URLs that are written through its own text parser, which GlobiFlow's Update Item bypasses, so the Zillow links land as plain (copyable) text rather than clickable links. To make them clickable, write the field with ProcFu's podio_html_to_item_field script via a Remote HTTP Call.

Then set the status field to Done. On a failure response the error calculation fills in and arv comes back empty, so you can branch the status to Error.

Branch on the response's success value (true/false) with a GlobiFlow condition to decide whether to write the ARV or the error message. To validate a calculation in the editor, use simulate vars and paste a sample propera response — otherwise the variable is empty and the match returns FALSE, which is expected at edit time, not a real failure.

Request fields

FieldValueRequired
addressThe lead's full address (street, city, state, ZIP)Always
property_typesfh, condo, townhouse, manufactured, or land (case-insensitive)Always
bedroomsNumber of bedroomsResidential
bathroomsNumber of bathroomsResidential
year_builtYear the property was builtResidential
sqftLiving area for residential, or lot size for landAlways
comp_radiusSearch radius in miles (residential up to 15, land up to 50)Always
lot_size_unitsqft or acresLand only

Response fields

FieldDescription
successtrue on success, false on failure (branch on this)
arvThe after-repair value estimate
arv_confidenceConfidence in the ARV (high / medium / low)
summary_textOne-line summary for a notes field
comp_countNumber of comparables used
price_per_sqftAverage price per square foot
run_urlLink to the saved run in Propera
comps_textReady-to-paste plain-text list of every comp (one per line, with Zillow links) for a single large text field
compsStructured array of each comp (address, price, sqft, beds, baths, ppsf, distance, sold date, Zillow link)
errorOn failure, a human-readable reason
error_codeOn failure, a machine-readable code (see Troubleshooting)

Troubleshooting

error_codeWhat it meansFix
INSUFFICIENT_COMPSNot enough comps at that radiusWiden comp_radius (residential up to 15 mi, land up to 50 mi)
NO_USABLE_COMPSComps were found but none passed the filtersWiden comp_radius (residential up to 15 mi, land up to 50 mi)
ADDRESS_NOT_FOUNDThe address could not be matchedInclude a street number; for rural roads try an alternate name
PLAN_NOT_ELIGIBLEYour plan doesn't include API accessUpgrade to Pro or Business
UNAUTHORIZEDThe API key is missing, wrong, or revokedCheck the X-API-Key header

Ready to auto-underwrite your Podio pipeline?

Generate your API key and wire up GlobiFlow in minutes.

Get Started