v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB
wallets

Initiate Intra ledger Transaction

An Intra ledger transaction is one that you use to send funds between two identities of the same category, i.e. either between consumers or between corporates. The source and destination account Ids must belong to your own application.

post/business/send/intra/initiate

Request body

businessIdstring uuid required

Unique Id of the business who is sending this transactions

sourceAccountIdstring required

The Id of the account to debit

destinationAccountIdstring required

The Id of the account to credit

amountstring required

The amount denominated in the smallest divisible unit of the sending currency. For example, cents or satoshis

memostring

Optional memo - Alphanumeric string upto 15 characters in length

Example request

{
  "sourceAccountId": "0148ae0856b1457ff3b59f2ac965b58e",
  "destinationAccountId": "5ad9f70b933ca275fee8de8ca684002d",
  "amount": "20000",
  "memo": "extend"
}

Response

success

challengeIdstring required
dateExpiresstring date-time required

Example response

{
  "challengeId": "e07f8157-5054-4f21-b867-b80d3d327a5c",
  "dateExpires": "2023-08-23T11:37:51.324Z",
  "transaction": {
    "syncedOwnerId": "b2ccf978-2da7-4ac9-9db7-5398c4c6b212",
    "parentWalletId": "e1f5dca0-b78b-4695-8752-81b172a2ea90",
    "currency": "EUR",
    "sourceAccountId": "0148ae0856b1457ff3b59f2ac965b58e",
    "destinationAccountId": "5ad9f70b933ca275fee8de8ca684002d",
    "amount": "20000",
    "memo": "extend",
    "senderAccountBalance": "200000",
    "status": "PENDING_2FA_CONFIRMATION",
    "txType": "INTRA_LEDGER_SEND"
  }
}