deleteCustomersCustomerBankAccountsId
Delete a customer source
DELETE /v1/customers/{customer}/bank_accounts/{id} HTTP/1.1Parameters
{
"customer": {
"description": "",
"required": true,
"location": "path",
"type": "string"
},
"id": {
"description": "",
"required": true,
"location": "path",
"type": "string"
}
}Response Schema
{
"anyOf": [
{
"anyOf": [
{
"$ref": "#/components/schemas/account"
},
{
"$ref": "#/components/schemas/bank_account"
},
{
"$ref": "#/components/schemas/card"
},
{
"$ref": "#/components/schemas/source"
}
],
"title": "Polymorphic",
"x-resourceId": "payment_source",
"x-stripeBypassValidation": true
},
{
"anyOf": [
{
"$ref": "#/components/schemas/deleted_bank_account"
},
{
"$ref": "#/components/schemas/deleted_card"
}
],
"title": "Polymorphic",
"x-resourceId": "deleted_payment_source",
"x-stripeBypassValidation": true
}
]
}