v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB

Initiate Intraledger Transaction

An Intraledger 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/wallets/send/intra/initiate

Headers

api-keystring required

api-key is available on the dashboard

Authorizationstring required

Request body

userIdstring required

The Id of the user who is sending this transaction

sourceAccountIdstring required

The Id of the account to debit

destinationAccountIdstring required

The Id of the account to credit

memostring

An optional memo - Alphanumeric string up to 100 characters in length

amountstring required

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

verificationMethod'sms' | 'passkey' | 'totp'

SCA factor one of sms (default), totp, or passkey. EUR and USDC sources only accept sms or passkey non-regulated crypto sources accept all three.

Response

200

challengeIdstring
dateExpiresstring

Example response

{
  "challengeId": "e07f8157-5054-4f21-b867-b80d3d327a5c",
  "dateExpires": "2023-08-23T11:37:51.324Z",
  "transaction": {
    "syncedOwnerId": "b2ccf978-2da7-4ac9-9db7-5398c4c6b212",
    "parentWalletId": "9e082445-bfa3-40de-8df7-727009a7cf02",
    "currency": "EUR",
    "sourceAccountId": "e38378c7ead5b4a2506984fad80257bb",
    "destinationAccountId": "ce1ecb680403de0c3c8c29e37892fb59",
    "amount": "20000",
    "memo": "extend",
    "senderAccountBalance": "200000",
    "status": "PENDING_2FA_CONFIRMATION",
    "txType": "INTRA_LEDGER_SEND"
  }
}