Retrieve a lookup

GET /api/v1/lookups/{type}/{lookup}

Try to find a Lookup value for a specific type.

Path parameters

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
GET /api/v1/lookups/{type}/{lookup}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/lookups/type/lookup' \
 --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": "38060f61-cf62-4fbe-8947-36399462f69b",
      "created_at": "2025-04-02T13:27:59+01:00",
      "updated_at": "2025-04-02T13:27:59+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": "d9c6be7e-16f6-440b-a6ce-6e388d22e2f5",
      "returnable_type": "plan",
      "returnable_uuid": "3378a027-8c5d-47a1-b986-3c9ee256a235",
      "lookupable_value": "J Bloggs Plan",
      "returnable_value": "example"
    }
  ]
}