View Categories

Create – Account/IBAN

< 1 min read

Create Account / IBAN #

Creates an IBAN and binds it to the individual’s wallet.

Endpoint #

POST https://api-test.10npay.com/api/v1/IndividualWallet/create-iban

Headers #

  • Authorization: Bearer <access_token>
  • Content-Type: application/json

Request Body #

{
  "id": 2077,
  "accountNumber": "1234567890"
}
Field Description
id Individual identifier (must be > 0).
accountNumber Internal reference or account number you assign to this IBAN. Required.

Responses #

  • 200 OK — IBAN created.
  • 400 Bad Request — invalid ID/account number or the individual is not eligible.
  • 404 Not Found — individual missing.
  • 5xx — internal error (retry with backoff).

Notes #

  • Require an existing wallet (see POST /api/v1/IndividualWallet/create-wallet).
  • The generated IBAN can be retrieved from the CRM portal or balance endpoints after creation.