Request a Transaction Report per userDeprecated

Generating the Transaction Report is an asynchronous operation. In case of success, the request will be accepted and the Transaction Report will be generated in an asynchronous way.

SecuritybearerAuth
Request
header Parameters
bp-user-id
required
string <uuid>

User unique identifier

Request Body schema: application/json

Transaction Report request, containing the time period and the report format.

date_start
required
string

Transaction Report start date and time, in 8601 ISO format

date_end
required
string

Transaction Report end date and time, in 8601 ISO format

format
required
string

File format for the Transaction Report

Value: "csv"
Responses
200

The request already exists. Use the getTransactionReport action to get the Transaction Report details.

201

The request has been created. It will be processed asynchronous. Use the getTransactionReport action to get the Transaction Report status and details.

400

Bad request

401

Error

422

Error

429

Too Many Requests

500

Error

503

Maintenance or Service unavailable

post/v1/reports/transactions
Request samples
application/json
{
  • "date_start": "2022-08-01T00:00:00+00:00",
  • "date_end": "2022-08-31T23:59:59+00:00",
  • "format": "csv"
}
Response samples
application/json
{
  • "data": {
    }
}