Address Withdraw
Parameters
- address: string (required)
Address to withdraw from
- amount: integer (required)
Amount to withdraw in A
- network: string (enum, required)
Network withdraw is on.
Allowed: mainnet, testnet
Response
201 Success
- data: object
- network: string
- unsigned_transaction_serialized: string
- signing_payload: string
400 Bad Request
Example Request
curl --request POST \
--url https://api.figment.io/vaulta/withdraw \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-api-key: your-api-key-here' \
--data '{\n "network": "mainnet"\n}'
Example Response
{
"data": {
"network": "string",
"unsigned_transaction_serialized": "string",
"signing_payload": "string"
}
}