Get Report Status
GET/report-service/api/v1/report/:reportId/status
Get the status for the given report id
info
This endpoint is available on the Prisma Cloud Darwin release only.
Request
Path Parameters
reportId stringrequired
Id of the report for which status to be retrieved.
Responses
- 200
- 401
- 403
- 404
Successful operation
- */*
- Schema
- Example (from schema)
Schema
reportId string
Id of the report being created.
createdBy string
User who created the report.
createdOn int64
Timestamp when report request is created.
status string
Current status of the report.
statusUrl string
Url to check the report status.
downloadUrl string
Url to download the report once report is generated.
{
"reportId": "string",
"createdBy": "string",
"createdOn": 0,
"status": "string",
"statusUrl": "string",
"downloadUrl": "string"
}
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...