GET/projects/api/v3/reporting/reportsources.json

List available report sources.

Returns the report sources (i.e. report types) available on this installation that can be used when creating a scheduled report.

Responses

  • Code
    200
    Type
    object
    Schema
    Description
    200 OK
    ResponseReportSources represents a list of report sources response.
  • Code
    400
    Type
    object
    Schema
    Description
    400 Bad Request
    ErrorResponse defines how []Error should be marshaled to JSON.
  • Code
    403
    Type
    object
    Schema
    Description
    403 Forbidden
    ErrorResponse defines how []Error should be marshaled to JSON.

Examples

200 OK

ResponseReportSources
{
  "reportSources": [
    {
      "id": 0,
      "layouts": [
        {
          "id": 0,
          "type": "string"
        }
      ],
      "name": "string"
    }
  ]
}