Skip to main content
PUT
/
v1
/
actors
/
GenarateEncKey
Generate Encryption Key
curl --request PUT \
  --url https://qa-lynx.nayax.com/operational/v1/actors/GenarateEncKey \
  --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 the encryption key is being generated.

Response

200 - application/json

Encryption key generated successfully.

Represents the encryption key information associated with an actor, including the encryption version and key details.

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.