---
title: "Initiate Onchain Withdrawal"
method: POST
path: "/business/send/initiate/onchain"
tags: ["wallets"]
---

# Initiate Onchain Withdrawal

`POST /business/send/initiate/onchain`

Send funds on chain to a whitelisted destination on the blockchain. The amount being withdrawn + total fees (including your fees + network fees) must be >= the business account balance.

## Request body

- BusinessInitiateOnChainWithdrawalRequest
  - `businessId` string, uuid, required — Unique Id of the business who is sending this transactions
  - `sourceAccountId` string, required — The Id of the account to debit
  - `whitelistedAddressId` string, uuid, required — The Id of the whitelisted destination
  - `amount` string, required — The amount denominated in the smallest divisible unit of the sending currency. For example, cents or satoshis
  - `fixedFee` string — Optional fixedFee in Euro cents to override the default application fee configuration. This amount can only be <= the default configured amount for this transaction type.
  - `percentFeeBps` string — Optional percentage fee in bps to override the default application fee configuration. This amount can only be <= the default configured amount for this transaction type.

## Response `200`

success

- BusinessInitiateOnChainWithdrawalResponse
  - `challengeId` string, required
  - `dateExpires` string, date-time, required
  - `transaction` object, required
    - `syncedOwnerId` string
    - `sourceAccountId` string, required
    - `parentWalletId` string, required
    - `currency` string, required
    - `amount` string
    - `status` string, required
    - `txType` string, required
    - `blockchainDestinationAddress` string
    - `blockchainNetwork` object
      - `name` string
      - `type` string
      - `contractAddress` string
    - `transactionCurrency` string
  - `feeEstimate` object, required
    - `totalFee` string
    - `networkFee` string
    - `ourFee` string
    - `theirFee` string
    - `feeCurrency` string
    - `gasLimit` string
    - `gasPrice` string
    - `feePerByte` string
    - `fixedFeeDetails` object
      - `amount` string
      - `exchangeRate` string
      - `appliedFeeCents` string
    - `percentageFeeDetails` object
      - `amount` string
      - `appliedFeeBps` string

## 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/revisions/63e57aa7df45/schema)
