Skip to main content
DELETE
/
api
/
user-api
/
payee
/
delete
/
{payee_id}
Delete Payee
curl --request DELETE \
  --url https://api.sandbox.paywint.com/api/user-api/payee/delete/{payee_id} \
  --header 'X-Api-Key: <x-api-key>' \
  --header 'X-Api-Secret: <x-api-secret>'
{
  "success": true,
  "message": "Operation completed.",
  "data": "<unknown>",
  "queryGeneratedTime": 1718006400
}

Headers

X-Api-Key
string
required

Your API Key (UUID format). Required to identify and authorize each request

X-Api-Secret
string
required

Secret associated with your API Key. Used for authenticating requests. Keep this secure.

Path Parameters

payee_id
string<uuid>
required

Unique identifier (UUID) of the payee.

Response

Successful Response

success
boolean
default:true

Indicates whether the request was processed successfully.

Example:

true

message
string
default:Success

A short, human-readable message describing the result of the request.

Example:

"Operation completed."

data
any | null

The main response payload, if applicable

queryGeneratedTime
number | null
default:1771679555.638735

The Unix timestamp (in seconds) indicating when the response was generated.

Example:

1718006400