Skip to main content
POST
Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀

Authorizations

BIZ-API-KEY
string
header
required

The API key. For more details, refer to API key.

In the API playground, enter your API secret, and your API key will be accordingly calculated.

Body

application/json

The request body to isolate funds.

The information about a request to isolate funds.

transaction_id
string<uuid>
required

The UUID of the transaction whose funds are to be isolated. This identifies the original transaction that requires fund isolation.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

destination_address
string
required

The blockchain address to receive the isolated funds.

Example:

"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb7"

disposition_amount
string
required

The amount to be isolated from the original transaction, specified as a numeric string. This value cannot exceed the total amount of the original transaction.

Example:

"1.5"

category_names
string[]

Custom categories to identify and track this isolation transaction. Used for transaction classification and reporting.

Example:
description
string

Additional notes or description for the isolation.

Maximum string length: 200
Example:

"Isolate funds due to compliance requirements - Case #12345"

Response

Successfully created a disposition request.

The response for a disposition request.

transaction_id
string<uuid>
required

The UUID of the transaction being processed for disposition.

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"

status
enum<string>
required

The status of a disposition operation.

Available options:
Submitted,
Refunding,
Refunded,
RefundFailed,
Frozen,
Unfreezing,
Unfrozen,
UnfreezeFailed,
Isolating,
Isolated,
IsolateFailed,
CoboDisposition,
Normal
Example:

"Submitted"