Skip to main content
POST
/
v1
/
machines
/
search
Search Machine Basic Info
curl --request POST \
  --url https://qa-lynx.nayax.com/operational/v1/machines/search \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "MachineID": 123,
  "StatusID": 123,
  "Search": "<string>"
}
'
[
  {
    "typeID": 123,
    "ID": "<string>",
    "parentID": "<string>",
    "Disabled": 123,
    "Name": "<string>"
  }
]

Authorizations

Authorization
string
header
required

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

Body

application/json
MachineID
integer<int64> | null

The unique identifier of the machine to search for.

StatusID
integer<int32> | null

The status identifier to filter the machines by status.

Search
string | null

The search query string to filter machines by name or number.

Response

200 - application/json

A list of machines matching the search criteria, including their basic details.

typeID
integer<int64> | null

The type identifier associated with the machine.

ID
string | null

The unique identifier for the machine search result.

parentID
string | null

The parent identifier associated with the machine, if any.

Disabled
integer<int64> | null

Indicator if the machine is disabled (1 for disabled, 0 for enabled).

Name
string | null

The name of the machine associated with the search result.