GET
/{orgId}/{itemId}/lookups/{lookupType}Query parameters
| Name | Type | Required | 
|---|---|---|
| token | string¦null | 
Path parameters
| Name | Type | Required | 
|---|---|---|
| lookup | string | |
| org | string | |
| item | string | 
Response status
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | List of lookups of a given type | Lookups | 
| 404 | Not Found | error | WorkflowExceptionDTO | 
| 500 | Internal Server Error | error | WorkflowJsonExceptionDTO | 
Examples
Request
# You can also use wget
curl -X GET /{orgId}/{itemId}/lookups/{lookupType} \
  -H 'Authorization: Bearer <YOUR_TOKEN>'Response
{
  "lookups": [
    {
      "lookupName": "string",
      "value": 0
    }
  ]
}