\n
Hi, I'm looking for some help with a pipeline. I've created step A which sends an api call for a MLS property search. This first step I used the Make a Request function under webhooks. It gets an access token and runs a property search, which comes back with the following results at the end of this post.
The only data I need from the results is the corelogicPropertyId, which I need for step B in order to get the property data back using this ID. The URL I need to make the B call is https://property.corelogicapi.com/v2/properties/<clip>/ownership
<clip> is where I need to insert the corelogicProperyId into the URL for step B. How do I pull this # to step B? I'm kind of stuck at this point, any help would be very appreciated.
Thanks!
Step A results:
{ \n
\"pageNumber\": 1,
\n
\"pageSize\": 1,
\n
\"totalRecords\": 1,
\n
\"totalPages\": 1,
\n
\"data\": [
\n
{
\n
\"corelogicPropertyId\": \"48243:74130542\",
\n
\"compositePropertyId\": \"48243:74130542\",
\n
\"fipsCode\": \"48243\",
\n
\"apn\": \"H150-000-00P00070\",
\n
\"latitude\": 30.6703,
\n
\"longitude\": -103.9664,
\n
\"universalParcelId\": \"74130542\",
\n
\"parcelNumber\": \"H15000000P00070\",
\n
\"parcelSequence\": \"1\",
\n
\"houseNumber\": null,
\n
\"houseNumber2\": null,
\n
\"preDirection\": \"W\",
\n
\"streetName\": \"WALNUT AVENUE OR 408\",
\n
\"streetSuffix\": null,
\n
\"postDirection\": null,
\n
\"unitNumber\": null,
\n
\"houseNumberSuffix\": null,
\n
\"city\": \"FORT DAVIS\",
\n
\"county\": \"JEFF DAVIS\",
\n
\"zipcode\": \"79734\",
\n
\"zip4\": null,
\n
\"state\": \"TX\",
\n
\"carrierRoute\": null,
\n
\"streetAddress\": \"W WALNUT AVENUE OR 408\",
\n
\"links\": [
\n
{
\n
\"rel\": \"self\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"ownership\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/ownership\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"building\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/building\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"foreclosure\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/foreclosure\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"tax-assessment\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/tax-assessment\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"VP4\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/VP4\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"PASS\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/PASS\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"GeoAVMCore\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/GeoAVMCore\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"GeoAVMPrecision\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/GeoAVMPrecision\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"Prospector\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/Prospector\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"sales-history\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/sales-history\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"finance-history\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/finance-history\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"site\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/site\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"summary\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/summary\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"location\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/location\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"comparables\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/comparables\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"owner-transfer\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/owner-transfer\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"last-market-sale\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/last-market-sale\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"prior-sale\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/prior-sale\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"current-transfer\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/current-transfer\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"current-first-mortgage\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/current-first-mortgage\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"legal-and-vesting\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/legal-and-vesting\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
}
\n
]
\n
}
\n
],
\n
\"links\": [
\n
{
\n
\"rel\": \"self\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property?address=%091600%20Walnut%20Avenue%20&zip5=78702&responseLimit=100&pageNumber=1&pageSize=10\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
}
\n
]
\n
}
\n
\n​\n
Hi, I'm looking for some help with a pipeline. I've created step A which sends an api call for a MLS property search. This first step I used the Make a Request function under webhooks. It gets an access token and runs a property search, which comes back with the following results at the end of this post.
The only data I need from the results is the corelogicPropertyId, which I need for step B in order to get the property data back using this ID. The URL I need to make the B call is https://property.corelogicapi.com/v2/properties/<clip>/ownership
<clip> is where I need to insert the corelogicProperyId into the URL for step B. How do I pull this # to step B? I'm kind of stuck at this point, any help would be very appreciated.
Thanks!
Step A results:
{ \n
\"pageNumber\": 1,
\n
\"pageSize\": 1,
\n
\"totalRecords\": 1,
\n
\"totalPages\": 1,
\n
\"data\": [
\n
{
\n
\"corelogicPropertyId\": \"48243:74130542\",
\n
\"compositePropertyId\": \"48243:74130542\",
\n
\"fipsCode\": \"48243\",
\n
\"apn\": \"H150-000-00P00070\",
\n
\"latitude\": 30.6703,
\n
\"longitude\": -103.9664,
\n
\"universalParcelId\": \"74130542\",
\n
\"parcelNumber\": \"H15000000P00070\",
\n
\"parcelSequence\": \"1\",
\n
\"houseNumber\": null,
\n
\"houseNumber2\": null,
\n
\"preDirection\": \"W\",
\n
\"streetName\": \"WALNUT AVENUE OR 408\",
\n
\"streetSuffix\": null,
\n
\"postDirection\": null,
\n
\"unitNumber\": null,
\n
\"houseNumberSuffix\": null,
\n
\"city\": \"FORT DAVIS\",
\n
\"county\": \"JEFF DAVIS\",
\n
\"zipcode\": \"79734\",
\n
\"zip4\": null,
\n
\"state\": \"TX\",
\n
\"carrierRoute\": null,
\n
\"streetAddress\": \"W WALNUT AVENUE OR 408\",
\n
\"links\": [
\n
{
\n
\"rel\": \"self\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"ownership\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/ownership\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"building\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/building\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"foreclosure\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/foreclosure\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"tax-assessment\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/tax-assessment\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"VP4\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/VP4\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"PASS\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/PASS\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"GeoAVMCore\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/GeoAVMCore\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"GeoAVMPrecision\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/GeoAVMPrecision\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"Prospector\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/avm/rave/Prospector\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"sales-history\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/sales-history\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"finance-history\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/finance-history\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"site\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/site\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"summary\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/summary\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"location\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/location\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"comparables\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/comparables\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"owner-transfer\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/owner-transfer\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"last-market-sale\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/last-market-sale\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"prior-sale\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/prior-sale\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"current-transfer\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/current-transfer\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"current-first-mortgage\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/current-first-mortgage\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
},
\n
{
\n
\"rel\": \"legal-and-vesting\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property/48243:74130542/legal-and-vesting\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
}
\n
]
\n
}
\n
],
\n
\"links\": [
\n
{
\n
\"rel\": \"self\",
\n
\"href\": \"https://clp-api-property-gcpprd-ext-prd.apps.pci.pcfusw1prd.solutions.corelogic.com/property?address=%091600%20Walnut%20Avenue%20&zip5=78702&responseLimit=100&pageNumber=1&pageSize=10\",
\n
\"hreflang\": null,
\n
\"media\": null,
\n
\"title\": null,
\n
\"type\": \"application/vnd.corelogic.v1+json\",
\n
\"deprecation\": null
\n
}
\n
]
\n
}
\n
\n​