Contents

POST /reports/$REPORT_ID#

This is used to request the generation of a periodic report. It is used internally by the taler-merchant-report-generator. The endpoint itself is unauthenticated, but the report-token serves to authorize the request.

Request:

The request must be a ReportGenerationRequest.

Response:

200 OK:

The backend has successfully added a new report. Details returned (including the content type) depend fully on the type of report that was requested.

404 Not found:

The report ID or the report token are unknown.

Details:

interface ReportGenerationRequest {

  // Report token authorizing the report generation.
  report_token: ShortHashCode;

}