Skip to main content
POST
/
customers
/
me
/
withdraw
Customer Request Withdrawal
curl --request POST \
  --url https://api.{your-broker}.slate-labs.com/customers/me/withdraw \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 5000000.005,
  "payment_data": {},
  "comment": "<string>"
}
'
{
  "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "amount": "<string>",
  "currency": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "max_withdrawable": "<string>",
  "message": "Withdrawal request submitted for approval"
}

Body

application/json

Customer-initiated withdrawal request.

amount
required

Positive withdrawal amount in account currency

Required range: 0.01 <= x <= 10000000
payment_data
Payment Data · object

Payment method details (bank, card, etc.)

comment
string | null
Maximum string length: 500

Response

Successful Response

transaction_id
string<uuid>
required
amount
string
required
currency
string
required
status
string
required
created_at
string<date-time>
required
max_withdrawable
string
required
message
string
default:Withdrawal request submitted for approval