curl --request POST \
--url https://api.orderly.org/v1/delegate_withdraw_request \
--header 'Content-Type: application/json' \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>' \
--data '{
"signature": "<string>",
"userAddress": "<string>",
"verifyingContract": "<string>",
"message": {
"delegateContract": "<string>",
"brokerId": "<string>",
"chainId": 123,
"receiver": "<string>",
"token": "<string>",
"amount": 123,
"withdrawNonce": "<string>",
"timestamp": "<string>"
}
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"withdraw_id": 123
}
}
Limit: 1 requests per second
POST /v1/delegate_withdraw_request
curl --request POST \
--url https://api.orderly.org/v1/delegate_withdraw_request \
--header 'Content-Type: application/json' \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>' \
--data '{
"signature": "<string>",
"userAddress": "<string>",
"verifyingContract": "<string>",
"message": {
"delegateContract": "<string>",
"brokerId": "<string>",
"chainId": 123,
"receiver": "<string>",
"token": "<string>",
"amount": 123,
"withdrawNonce": "<string>",
"timestamp": "<string>"
}
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"withdraw_id": 123
}
}
OK
The response is of type object
.