Headers
-
Content-Type
string -
Accept
string -
X-PLANNR-ACCOUNT-UUID
string
Query parameters
-
filter[uuid]
string Filter by a comma separated list of UUIDs.
-
filter[types]
string Filter by a comma separated list of lookup types.
-
sort
string Field to sort by. Valid fields are [created_at]. Negative sign to denote DESC. Defaults to 'created_at'.
-
per_page
integer Number of results to return with pagination (Default 15. Max 500).
GET
/api/v1/lookups
curl \
--request GET 'https://api.plannrcrm.com/api/v1/lookups' \
--header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--header "X-PLANNR-ACCOUNT-UUID: {YOUR_PLANNR_ACCOUNT_UUID}"
Response examples (200)
{
"data": [
{
"type": "provider_statement_mapping",
"uuid": "ffa1e75a-3164-4fa6-ab52-036f146061b2",
"created_at": "2025-06-05T11:39:43+01:00",
"updated_at": "2025-06-05T11:39:43+01:00",
"return_json": {
"key_1": "value_1",
"key_2": "value_2"
},
"lookup_value": "zAbWeFVJ:Bloggs J",
"return_float": 70.35,
"return_string": "Consectetur officia labore",
"lookupable_type": "provider",
"lookupable_uuid": "4ca13429-26ba-49a1-b676-916155fe745c",
"returnable_type": "plan",
"returnable_uuid": "fb8fac66-96b7-4423-b588-d3e34548994b",
"lookupable_value": "J Bloggs Plan",
"returnable_value": "example"
}
]
}