curl --request POST \
--url https://api.easierprop.com/api/accounts/{id}/positions/history \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"tickets": [
12345678,
12345679
]
}
'{
"ok": true,
"data": [
{}
]
}Fetch specific historical positions by their ticket numbers.
curl --request POST \
--url https://api.easierprop.com/api/accounts/{id}/positions/history \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"tickets": [
12345678,
12345679
]
}
'{
"ok": true,
"data": [
{}
]
}