Skip to main content
DELETE
/
v1
/
payments
/
{paymentId}
Delete payment
curl --request DELETE \
  --url https://app.blinksale.test/api/v1/payments/{paymentId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Operation completed successfully"
}

Authorizations

Authorization
string
header
required

Access token obtained from the /v1/auth/login endpoint

Path Parameters

paymentId
string<uuid>
required

The ID of the payment to delete

Response

Payment deleted successfully

success
boolean
required
Example:

true

message
string
required
Example:

"Operation completed successfully"