Get All Reports

Get All Reports

Get all reports for the tenant calling the API.

Request
URI
GET
https://eapi.broadcom.com/vcf/ums/api/v1/reports/{year}/{month}
COPY
Path Parameters
integer
year
Required
Constraints: minimum: 0

The year of the requested reports.

integer
month
Required
Constraints: minimum: 1 maximum: 12

The month of the requested report. The numbers from 1 to 12 match the months from JAN to DEC.


Authentication
This operation uses the following authentication methods.
Responses
200

A list of reports for every usage metering agent available (not deleted) for the specified reporting period. The format is a dictionary where the keys are the agent IDs and for each agent the value is a list of all reports available for download.

Returns ReportsForPeriod of type(s) application/json
{
    "0": {
        "ref": "string",
        "contentType": "string",
        "reportType": "string",
        "contentLength": 0,
        "checksum": "string"
    }
}

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/vcf/ums/api/v1/reports/{year}/{month}