Skip to main content
POST
/
api
/
accounts
/
{id}
/
positions
/
history
Positions by tickets
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": [
    {}
  ]
}

Authorizations

X-API-Key
string
header
required

Client API key (prefixed with sk_)

Path Parameters

id
string<uuid>
required

Account ID

Body

application/json
tickets
integer<int64>[]
required
Example:
[12345678, 12345679]

Response

200 - application/json

Position details

ok
boolean
Example:

true

data
object[]