Skip to main content
DELETE
/
payers
/
{payer_id}
/
payment_methods
/
{payment_method_id}
Delete a payment method
curl --request DELETE \
  --url https://api.withacclaim.com/v1/payers/{payer_id}/payment_methods/{payment_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

payer_id
string
required

ID of the payer.

payment_method_id
string
required

ID of the payment method.

Response

Payment method deleted.

Last modified on April 14, 2026