Query parameters

  • Filter by a comma separated list of UUIDs.

  • 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).

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
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": "448cb683-c8bf-452a-81a9-dd30b55379d5",
      "created_at": "2025-04-22T13:44:21+01:00",
      "updated_at": "2025-04-22T13:44:21+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": "9a58d65b-d3b7-4f06-ad70-2f83641507ba",
      "returnable_type": "plan",
      "returnable_uuid": "dac92db8-45f2-42a3-9719-4848e4eecb1e",
      "lookupable_value": "J Bloggs Plan",
      "returnable_value": "example"
    }
  ]
}