Lean Technologies · Example Payload

Lean Verify Account Example

Open BankingOpen FinanceMENAUAESaudi ArabiaPaymentsPay by BankA2AAccount InformationPayment InitiationVerificationsIdentityFintech

Lean Verify Account Example is an example object payload from Lean Technologies, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api2.leantech.me/verifications/v1/accounts",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJSUzI1NiIs...",
      "Content-Type": "application/json"
    },
    "body": {
      "country": "AE",
      "iban": "AE070331234567890123456",
      "beneficiary_name": "Acme Trading LLC"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "verified": true,
      "match_strength": "FULL",
      "bank_name": "Emirates NBD",
      "account_holder": "Acme Trading LLC"
    }
  }
}