Skip to main content
Reorder Wallets
curl --request PUT \
  --url https://synthesis.trade/api/v1/wallet \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "wallet_ids": [
    "wallet-a",
    "wallet-b"
  ]
}
'
{
  "success": true,
  "response": [
    "wallet-a",
    "wallet-b"
  ]
}

Authorizations

X-API-KEY
string
header
required

Account secret API key.

Body

application/json
wallet_ids
string[]
required

Ordered wallet IDs.

Example:
["wallet-a", "wallet-b"]

Response

200 - application/json

Wallet order updated