Skip to main content
GET
/
v1
/
actors
/
GetEncKeys
Get Encryption Keys by ActorID
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/actors/GetEncKeys \
  --header 'Authorization: <api-key>'
[
  {
    "actor_id": 123,
    "enc_ver": 123,
    "enc_key": "<string>",
    "created_dt": "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 for whom encryption keys are being retrieved.

Response

200 - application/json

Encryption keys retrieved successfully.

actor_id
integer<int64> | null

The unique identifier of the actor associated with this encryption key.

enc_ver
integer<int32> | null

The version of the encryption key.

enc_key
string | null

The encryption key used for securing data.

created_dt
string<date-time> | null

The date and time when the encryption key was created.