Skip to main content
DELETE
/
payees
/
{payee_id}
/
payout_methods
/
{payout_method_id}
Delete a payout method
curl --request DELETE \
  --url https://api.withacclaim.com/v1/payees/{payee_id}/payout_methods/{payout_method_id} \
  --header 'Authorization: Bearer <token>'
{
  "error": {
    "code": "invalid_request",
    "message": "Missing required field: amount",
    "details": {},
    "request_id": "req_7lYt4o2x"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

payee_id
string
required

ID of the payee.

payout_method_id
string
required

ID of the payout method.

Response

Payout method deleted.

Last modified on April 14, 2026