Download a report
GET/report-service/api/v1/report/:reportId/download
Download the report by given report id. Output format can vary with the different report type. Possible formats can be of zip, json.
info
This endpoint is available on the Prisma Cloud Darwin release only.
Request
Path Parameters
reportId stringrequired
Id of the report to be downloaded.
Responses
- 200
- 401
- 403
- 404
Successful operation
Unauthorized - user cannot be authenticated to service the request
- */*
- Schema
- Example (from schema)
Schema
i18nKey string
severity string
Possible values: [ERROR
, INFO
, WARNING
]
subject string
statusCode int32
{
"i18nKey": "string",
"severity": "ERROR",
"subject": "string",
"statusCode": 0
}
Forbidden - user does not have the required role
- */*
- Schema
- Example (from schema)
Schema
i18nKey string
severity string
Possible values: [ERROR
, INFO
, WARNING
]
subject string
statusCode int32
{
"i18nKey": "string",
"severity": "ERROR",
"subject": "string",
"statusCode": 0
}
Not Found - report not found
- */*
- Schema
- Example (from schema)
Schema
i18nKey string
severity string
Possible values: [ERROR
, INFO
, WARNING
]
subject string
statusCode int32
{
"i18nKey": "string",
"severity": "ERROR",
"subject": "string",
"statusCode": 0
}
Loading...