DELETE
/
payees
/
{payeeId}
curl --request DELETE \
  --url https://test.onlinecheckwriter.com/api/v3/payees/{payeeId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Successfully deleted"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

payeeId
string
required

The ID of the payee to delete.

Response

200
application/json
Payee deleted successfully.
success
boolean
Example:

true

message
string
Example:

"Successfully deleted"