Create a statement task, backend generates statement data asynchronously
Request
Body Params application/jsonRequired
{
"statementType": "1",
"accountType": "1",
"statementEndDate": "2025-03-01",
"currencies": [
"USDT",
"USD"
]
}
Request Code Samples
curl --location '/v2/payment/statements' \
--header 'Content-Type: application/json' \
--data '{
"statementType": "1",
"accountType": "1",
"statementEndDate": "2025-03-01",
"currencies": [
"USDT",
"USD"
]
}'
Responses
{
"code": 0,
"msg": "success",
"data": {
"statementId": "ST20250301001"
}
}
Modified at 2026-06-02 03:48:09