Skip to main content
GET
/
v1
/
machines
/
changeLogs
Get Machine Change Logs
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/machines/changeLogs \
  --header 'Authorization: <api-key>'
[
  {
    "MachineID": "<string>",
    "ChangedItem": "<string>",
    "ChangedFrom": "<string>",
    "ChangedTo": "<string>",
    "Tab": "<string>",
    "ChangedBy": "<string>",
    "UpdatedDt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

ActorID
integer<int64>

The unique identifier of the actor related to the machine changes.

StartDate
string<date-time>

The start date to filter the change logs, in ISO 8601 format.

EndDate
string<date-time>

The end date to filter the change logs, in ISO 8601 format.

MachineID
integer<int64>

The unique identifier of the machine for which the change logs are requested.

TimePeriod
integer<int32>

The period within which to search for change logs, in seconds.

MachineNumber
string

The machine's serial number used to filter the change logs.

Response

200 - application/json

A list of machine change logs based on the provided parameters.

MachineID
string | null

The unique identifier of the machine that was changed.

ChangedItem
string | null

The item or property that was changed on the machine.

ChangedFrom
string | null

The original value of the changed item before the update.

ChangedTo
string | null

The new value of the changed item after the update.

Tab
string | null

The tab or section of the machine where the change occurred.

ChangedBy
string | null

The user or system that made the change.

UpdatedDt
string<date-time>

The date and time when the change was made.