Create a statement task, backend generates statement data asynchronously
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/jsonRequired
{
"statementType": "1",
"accountType": "1",
"statementEndDate": "2025-03-01",
"currencies": [
"USDT",
"USD"
]
}
Request Code Samples
curl --location '/v2.0/payment/statements' \
--header 'Content-Type: application/json' \
--data '{
"statementType": "1",
"accountType": "1",
"statementEndDate": "2025-03-01",
"currencies": [
"USDT",
"USD"
]
}'
Responses
{
"code": 200,
"msg": "success",
"data": {
"statementId": "c90a42b3eefc4d7d912ecf8673788394"
}
}
Modified at 2026-07-21 08:43:50