Skip to main content
GET
/
v1
/
group
/
{GroupID}
/
roles
Get Group Roles
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/group/{GroupID}/roles \
  --header 'Authorization: <api-key>'
[
  {
    "RoleID": 123,
    "RoleName": "<string>",
    "UpdatedDT": "2023-11-07T05:31:56Z",
    "CKey": "<string>",
    "IsActive": true,
    "IsAdminBit": true
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

GroupID
integer<int32>
required

The unique identifier of the group for which roles are being retrieved.

Response

200 - application/json

A list of roles associated with the specified group.

RoleID
integer<int32> | null

The unique identifier of the role.

RoleName
string | null

The name of the role.

UpdatedDT
string<date-time> | null

The date and time when the role information was last updated.

CKey
string | null

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

IsActive
boolean | null

Indicates whether the role is currently active.

IsAdminBit
boolean | null

Indicates whether the role has administrative privileges.