AML
Country Data
Crypto
- Private
- POSTAdd Order
- POSTCancel All Orders After X
- POSTCancel All Orders
- POSTCancel Order
- POSTDelete Export Report
- POSTGet Account Balance
- POSTGet Closed Orders
- POSTGet Deposit Addresses
- POSTGet Export Report Status
- POSTGet Ledgers Info
- POSTGet Open Orders
- POSTGet Open Positions
- POSTGet Status of Recent Deposits
- POSTGet Status of Recent Withdrawals
- POSTGet Trade Balance
- POSTGet Trade Volume
- POSTGet Trades History
- POSTGet Websockets Token
- POSTGet Withdrawal Information
- POSTQuery Ledgers
- POSTQuery Orders Info
- POSTQuery Trades Info
- POSTRequest Export Report
- POSTRequest Wallet Transfer
- POSTRequest Withdrawal Cancelation
- POSTRetrieve Data Export
- POSTStake Asset
- POSTUnstake Asset
- POSTWithdraw Funds
- POST
- Public
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
Private
Get Export Report Status
Get status of requested data exports.
POST
/
getExportReportStatus
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/getExportReportStatus \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"nonce": "-20863236",
"report": "ledgers"
}'
Copy
{
"error": [],
"result": [
{
"id": "VSKC",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1616669085",
"expiretm": "1617878685",
"starttm": "1616669093",
"completedtm": "1616669093",
"datastarttm": "1614556800",
"dataendtm": "1616669085",
"aclass": "forex",
"asset": "all"
},
{
"id": "TCJA",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1617363637",
"expiretm": "1618573237",
"starttm": "1617363664",
"completedtm": "1617363664",
"datastarttm": "1617235200",
"dataendtm": "1617363637",
"aclass": "forex",
"asset": "all"
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request POST \
--url https://gateway.varchev.com/crypto/getExportReportStatus \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"nonce": "-20863236",
"report": "ledgers"
}'
Copy
{
"error": [],
"result": [
{
"id": "VSKC",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1616669085",
"expiretm": "1617878685",
"starttm": "1616669093",
"completedtm": "1616669093",
"datastarttm": "1614556800",
"dataendtm": "1616669085",
"aclass": "forex",
"asset": "all"
},
{
"id": "TCJA",
"descr": "my_trades_1",
"format": "CSV",
"report": "trades",
"subtype": "all",
"status": "Processed",
"flags": "0",
"fields": "all",
"createdtm": "1617363637",
"expiretm": "1618573237",
"starttm": "1617363664",
"completedtm": "1617363664",
"datastarttm": "1617235200",
"dataendtm": "1617363637",
"aclass": "forex",
"asset": "all"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.