POST
/
v1
/
withdraw_request
curl --request POST \
  --url https://api-evm.orderly.network/v1/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": {
    "brokerId": "<string>",
    "chainId": 123,
    "receiver": "<string>",
    "token": "<string>",
    "amount": 123,
    "withdrawNonce": "<string>",
    "timestamp": "<string>"
  }
}'
{
  "success": true,
  "timestamp": 1702989203989,
  "data": {
    "withdraw_id": 123
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Body

application/json
signature
string
required

The signature generated by signing the message object via EIP-712

userAddress
string
required

The address of the wallet signing the message object via EIP-712

verifyingContract
string
required

Address of the Orderly Network ledger contract

message
object
required

Message object containing the message that is signed by the wallet owner

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required