Skip to main content
GET
/
v1
/
actor
/
{ActorID}
/
machineGroups
List All Machine Groups for Actor
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/actor/{ActorID}/machineGroups \
  --header 'Authorization: <api-key>'
[
  {
    "MachineGroupId": 123,
    "ActorId": 123,
    "MachineGroupName": "<string>",
    "MachineGroupCode": 123,
    "MachineGroupStatus": 123,
    "CreatedBy": 123,
    "CreatedOn": "2023-11-07T05:31:56Z",
    "UpdatedOn": "2023-11-07T05:31:56Z",
    "UpdatedBy": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

ActorID
integer<int64>
required

The unique identifier of the actor for whom the machine groups are being retrieved.

Response

200 - application/json

A list of machine groups associated with the actor was retrieved successfully.

MachineGroupId
integer<int32> | null

The unique identifier of the machine group.

ActorId
integer<int64> | null

The unique identifier of the actor associated with this machine group.

MachineGroupName
string | null

The name of the machine group.

MachineGroupCode
integer<int64> | null

A code assigned to the machine group for identification or categorization.

MachineGroupStatus
integer<int32>

The status identifier of the machine group, indicating its current state.

CreatedBy
integer<int64> | null

The unique identifier of the user who created this machine group.

CreatedOn
string<date-time> | null

The date and time when the machine group was created.

UpdatedOn
string<date-time> | null

The date and time when the machine group was last updated.

UpdatedBy
integer<int64> | null

The unique identifier of the user who last updated this machine group.