Skip to main content
GET
/
v1
/
lookupTypes
/
{LutTypeID}
/
values
Get Lookup Values by Lookup Type ID
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/lookupTypes/{LutTypeID}/values \
  --header 'Authorization: <api-key>'
[
  {
    "LutTypeRef": "<string>",
    "LutID": 123,
    "LutTypeID": 123,
    "LutValue": "<string>",
    "LastUpdated": "2023-11-07T05:31:56Z",
    "OrderKey": 123,
    "LutCode": 123,
    "Ckey": "<string>",
    "ServiceLutId": 123,
    "CreatedDT": "2023-11-07T05:31:56Z",
    "CreatedBT": 123,
    "UpdatedBy": 123,
    "LinkedLutId": 123
  }
]

Authorizations

Authorization
string
header
required

Enter your API key. It's required to authenticate API requests.

Path Parameters

LutTypeID
integer<int32>
required

The unique identifier of the lookup type for which values are being retrieved.

Response

200 - application/json

A list of lookup values associated with the specified lookup type.

LutTypeRef
string | null

A reference to the lookup type, typically used for informational purposes.

LutID
integer<int32> | null

The unique identifier of the lookup value.

LutTypeID
integer<int32> | null

The unique identifier of the lookup type associated with this value.

LutValue
string | null

The actual value of the lookup item.

LastUpdated
string<date-time> | null

The date and time when the lookup value was last updated.

OrderKey
integer<int32> | null

The order or priority key associated with the lookup value.

LutCode
integer<int32> | null

A code associated with the lookup value, typically used for categorization or identification.

Ckey
string | null

A unique key associated with the lookup value for additional identification or reference.

ServiceLutId
integer<int32> | null

The service-related identifier associated with the lookup value.

CreatedDT
string<date-time> | null

The date and time when the lookup value was created.

CreatedBT
integer<int64> | null

The identifier of the user or system that created the lookup value.

UpdatedBy
integer<int64> | null

The identifier of the user or system that last updated the lookup value.

LinkedLutId
integer<int32> | null

The identifier of a related or linked lookup value.