Skip to main content
DELETE
/
v1
/
actors
/
{ActorID}
/
paymentMethods
/
{paymentMethodID}
Delete a Payment Method
curl --request DELETE \
  --url https://qa-lynx.nayax.com/operational/v1/actors/{ActorID}/paymentMethods/{paymentMethodID} \
  --header 'Authorization: <api-key>'
{
  "Ok": true,
  "Message": "<string>",
  "SystemMessage": "<string>",
  "code": "<string>"
}

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 whose payment method is being deleted.

paymentMethodID
integer<int32>
required

The unique identifier of the payment method to be deleted.

Response

200 - application/json

The payment method was deleted successfully.

Schema representing the result of an API operation, including status and messages.

Ok
boolean

Indicates whether the API operation was successful (true) or not (false).

Message
string | null

A user-friendly message describing the result of the operation, if applicable.

SystemMessage
string | null

A system-level message providing additional details about the operation's result, often used for debugging or logging.

code
string | null

An optional code representing the result of the operation, which can be used for more granular handling of responses.