POST
/
api
/
v1
/
liquidity
/
management
/
withdrawals
Withdraw Balance
curl --request POST \
  --url https://api.mansa.io/api/v1/liquidity/management/withdrawals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "amount": "10000",
  "chain_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "PENDING"
}

Authorizations

X-API-Key
string
header
required

API key for authentication

Authorization
string
header
required

JWT token following RFC001 specification

Body

application/json

Response

Withdrawal created

The response is of type object.