Get Export Report Status
POST/private/ExportStatus
Get status of requested data exports.
API Key Permissions Required: Data - Export data
Request
- application/json
Body
required
nonce int64required
Nonce used in construction of API-Sign
header
report stringrequired
Possible values: [trades
, ledgers
]
Type of reports to inquire about
Responses
- 200
Export status retrieved
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
result object[]
id string
Report ID
descr string
format string
report string
subtype string
status string
Possible values: [Queued
, Processing
, Processed
]
Status of the report
flags stringdeprecated
fields string
createdtm string
UNIX timestamp of report request
expiretm stringdeprecated
starttm string
UNIX timestamp report processing began
completedtm string
UNIX timestamp report processing finished
datastarttm string
UNIX timestamp of the report data start time
dataendtm string
UNIX timestamp of the report data end time
aclass stringdeprecated
asset string
error string[]
{
"error": [],
"result": [
{
"id": "VSKC",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1688669085",
"expiretm": "1688878685",
"starttm": "1688669093",
"completedtm": "1688669093",
"datastarttm": "1683556800",
"dataendtm": "1688669085",
"aclass": "forex",
"asset": "all"
},
{
"id": "TCJA",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1688363637",
"expiretm": "1688573237",
"starttm": "1688363664",
"completedtm": "1688363664",
"datastarttm": "1683235200",
"dataendtm": "1688363637",
"aclass": "forex",
"asset": "all"
}
]
}
Loading...