---
title: "Initiate Inter ledger Transaction"
method: POST
path: "/business/send/inter/initiate"
tags: ["wallets"]
---

# Initiate Inter ledger Transaction

`POST /business/send/inter/initiate`

An Inter ledger transaction is one that you use to send funds between two identities of different categories, i.e. either between yourself (a corporate) and a consumer, or vice versa. When moving funds between your corporate and a consumer, the initiate -> verify steps are followed, however no SMS OTP is sent for verification and the default verification code of '123456' will pass. Your corporate is already authenticated by means of having a valid API key.

## Request body

- BusinessInitiateInterLedgerTransactionRequest
  - `businessId` string, uuid, required — Unique Id of the business who is sending this transactions
  - `sourceAccountId` string, required — The Id of the account to debit
  - `destinationAccountId` string, required — The Id of the account to credit
  - `amount` string, required — The amount denominated in the smallest divisible unit of the sending currency. For example, cents or satoshis
  - `memo` string — Optional memo - Alphanumeric string upto 15 characters in length

## Response `200`

success

- BusinessInitiateInterLedgerTransactionResponse
  - `challengeId` string, required
  - `dateExpires` string, date-time, required
  - `transaction` object, required
    - `syncedOwnerId` string
    - `parentWalletId` string, required
    - `currency` string, required
    - `sourceAccountId` string, required
    - `destinationAccountId` string
    - `amount` string
    - `memo` string
    - `senderAccountBalance` string
    - `status` string, required
    - `txType` string, required

## Other responses

- `400` — Bad Request. The request was unacceptable, often due to missing a required parameter.
- `401` — Invalid authentication header
- `403` — Forbidden
- `500` — Unexpected server error.

---

[API](https://skmtc.net/striga/apis/striga-v1.md) · [All operations](https://skmtc.net/striga/apis/striga-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/striga/striga-v1/versions/63e57aa7df45/schema)
