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"
]
}Update wallet positions by supplying wallet IDs in their desired order.
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"
]
}