Skip to main content
POST
/
utils
/
validateIban
Validate an IBAN
curl --request POST \
  --url https://business.bfinance.app/external/api/utils/validateIban \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "iban": "DE89370400440532013000"
}
'
{
  "status": "success",
  "data": {
    "valid": true
  }
}

Authorizations

Authorization
string
header
required

JWT authentication token

Body

application/json
iban
string
Example:

"DE89370400440532013000"

Response

Successfully validated IBAN

status
string
Example:

"success"

data
object