Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"name": "PayoutsExport",
"params": {
"format": "csv",
"from": "2023-04-01",
"to": "2023-04-10",
"merchantAccountId": 1
}
}
Request Code Samples
curl --location --request GET '/api/reporting/request' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "PayoutsExport",
"params": {
"format": "csv",
"from": "2023-04-01",
"to": "2023-04-10",
"merchantAccountId": 1
}
}'
Responses
application/json Modified at 2025-08-09 05:39:41