DELETE
/
bank-accounts
curl --request DELETE \
  --url https://api-sandbox.koywe.com/rest/bank-accounts \
  --header 'Authorization: Bearer <token>'
{
  "_id": "63dd5fd9cccad469ee2408f7",
  "bankCode": "SANTANDER",
  "countryCode": "CHL",
  "currencySymbol": "CLP",
  "accountNumber": "1234596789",
  "account": "62f28c4aa05176c3dfba8e",
  "name": "BANCO SANTANDER"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

_id
string
required

Bank info identifier.

countryCode
string
required

Symbol of the country of choice.

currencySymbol
string
required

Symbol of the currency of the chosen country.

Response

200
application/json
successful operation
_id
string
Example:

"63dd5fd9cccad469ee2408f7"

bankCode
string
Example:

"SANTANDER"

countryCode
string
Example:

"CHL"

currencySymbol
string
Example:

"CLP"

accountNumber
string
Example:

"1234596789"

account
string
Example:

"62f28c4aa05176c3dfba8e"

name
string
Example:

"BANCO SANTANDER"