Get a single lookuplist
Get one lookup list along with the list of items within that list The structure of Team Skills is different because it is a multi-level layout
Path parameters
-
The ID of the lookup list to retrieve
GET /lookuplist/{id}
curl \
-X GET https://YOURSITE.infoodle.com/apiv2/lookuplist/45 \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"id": 234,
"name": "School year",
"usage": "ADDRESSTYPES"
}
Response examples (201)
{
"id": 234,
"name": "School year",
"usage": "string",
"items": [
{
"category": "Musical Instruments",
"items": [
{
"id": 562,
"value": "Guitar"
}
]
}
]
}