Harmony IntegrationHarmony Integration

Validate IBAN

POST /api/data/ValidateIban

🏦 Validate an IBAN bank account number using the standard European algorithmic checksum.

  • πŸ“€ Send the IBAN as a plain string in the request body (e.g. "NL91ABNA0417164300")
  • βœ… Asserts correct country prefix, check digits, and BBAN format
POST
/api/data/ValidateIban

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

body*string
IBAN number to validate, e.g. NL70ABNA00000000.

Response Body

curl -X POST "https://jubilee-ws.test.harmony.nl/api/data/ValidateIban" \  -H "Content-Type: application/json" \  -d 'DE85740201001516666683'