---
title: "Confirm transaction with OTP"
method: POST
path: "/business/transaction/confirm"
tags: ["wallets"]
---

# Confirm transaction with OTP

`POST /business/transaction/confirm`

TODO

## Request body

- BusinessConfirmTransactionRequest
  - `businessId` string, uuid, required — The Id of the business who is sending this transaction
  - `challengeId` string, uuid, required — The challengeId that you received when initiating the transaction
  - `verificationCode` string, required — 6 characters code. Default code for sandbox '123456'
  - `ip` string, ip, required — IP address collected as the IP address from which the End User is making the withdrawal request. IMPORTANT - This will be a required parameter from the 15th of June 2023 and is optional until then.

## Response `200`

success

- BusinessConfirmTransactionResponse
  - `id` string, uuid, required
  - `sourceAccountId` string, alpha-numeric, required
  - `destinationAccountId` string, alpha-numeric, required
  - `memo` string
  - `status` string
  - `txType` string
  - `order` object
    - `price` string
    - `debit` object
      - `currency` string
      - `amountFloat` string
      - `amount` string, big-number-amount
    - `credit` object
      - `currency` string
      - `amountFloat` string
      - `amount` string, big-number-amount
  - `dateTime` string, date-time
  - `balanceBefore` object
    - `balance` string, big-number-amount
    - `currency` string
  - `balanceAfter` object
    - `balance` string, big-number-amount
    - `currency` string
  - `sourceSyncedOwnerId` string, uuid
  - `destinationSyncedOwnerId` string, uuid

## Other responses

- `400` — Bad Request. The request was unacceptable, often due to missing a required parameter.
- `401` — Invalid authentication header
- `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)
