curl --request POST \
--url https://api.example.com/history/get \
--header 'Content-Type: application/json' \
--data '
{
"pageable": {
"orderBy": [
{
"ignoreCase": true,
"direction": "ASC",
"property": "<string>",
"ascending": true
}
],
"size": 123,
"sort": {
"orderBy": [
{
"ignoreCase": true,
"direction": "ASC",
"property": "<string>",
"ascending": true
}
]
},
"number": 123,
"mode": "CURSOR_NEXT"
},
"command": {
"systems": [
"<string>"
]
}
}
'