GET
/greengrass/bulk/deployments/{BulkDeploymentId}/detailed-reports
http://greengrass.{region}.amazonaws.com/greengrass/bulk/deployments/{BulkDeploymentId}/detailed-reportsGets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.
Access Token Required: API Key
Path Parameters
BulkDeploymentIdstringrequired
The ID of the bulk deployment.
Query Params
MaxResultsstring
The maximum number of results to be returned per request.
NextTokenstring
The token for the next set of results, or ''null'' if there are no additional results.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}Language
CredentialsAPI KEY
API Key
Enter token below to save for later
cURL Request
1curl --request GET \2 --url 'http://greengrass.{region}.amazonaws.com/greengrass/bulk/deployments/{BulkDeploymentId}/detailed-reports' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'Response
1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}