Skip to main content
GET
/
v1
/
lookups
/
values
/
{LutID}
Get Lookup Value by Lookup ID
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/lookups/values/{LutID} \
  --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

LutID
integer<int32>
required

The unique identifier of the lookup value to be retrieved.

Response

200 - application/json

The lookup value associated with the specified lookup ID.

Represents a lookup value, including its identifiers, associated types, and additional metadata.

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.