cURL
curl --request POST \ --url https://laso.finance/withdraw \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "amount": 1.01 }'
{ "success": true, "withdrawal": { "id": "<string>", "amount": 123, "state": "pending", "timestamp": 123, "timestamp_readable": "<string>" } }
Initiate a withdrawal from the user’s account balance. The withdrawal is created in a pending state and will be processed by the admin flow.
pending
Requires a Bearer token from /auth, /get-card, or /send-payment.
/auth
/get-card
/send-payment
ID token from /auth or /get-card
Amount to withdraw in USD
x >= 0.01
Withdrawal initiated
A withdrawal record.
Show child attributes