/access-preview/{accessPreviewId}
http://access-analyzer.{region}.amazonaws.com/access-preview/{accessPreviewId}Retrieves a list of access preview findings generated by the specified access preview.
Path Parameters
The unique ID for the access preview.
Query Params
Pagination limit
Pagination token
Body Params
Criteria to filter the returned findings.
A token used for pagination of results returned.
The maximum number of results to return in the response.
The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-getting-started.html#permission-resources">ARN of the analyzer</a> used to generate the access.
Responses
{
"success": true,
"data": {
"id": "abc123",
"created_at": "2025-01-01T00:00:00Z"
}
}{
"success": false,
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request parameters"
}
}1curl --request POST \2 --url 'http://access-analyzer.{region}.amazonaws.com/access-preview/{accessPreviewId}' \3 --header 'accept: application/json' \4 --header 'content-type: application/json'1{2 "success": true,3 "data": {4 "id": "abc123",5 "created_at": "2025-01-01T00:00:00Z"6 }7}