Authentication
Connections
AWS
Guard Rails
Server Management
Jira
Organization Management
Reports
User Management
Sessions
AWS
Verify IAM permissions
Verify if the IAM permissions are configured properly
POST
/
integrations
/
aws
/
iam
/
verify
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/iam/verify
{
"evaluation_details": [
{
"action_name": "ec2:DescribeInstances",
"decision": "allowed",
"matched_statements": [
{
"source_policy_id": "ANPAI3R4QMYGV2EXAMPL4",
"source_policy_type": "managed"
}
],
"resource_name": "arn:aws:ec2:us-west-2:123456789012:instance/i-0123456789abcdef0"
}
],
"identity": {
"account_id": "123456789012",
"arn": "arn:aws:iam::123456789012:user/johndoe",
"arn_id": "AIDACKCEVSQ6C2EXAMPLE",
"region": "us-west-2"
},
"status": "allowed"
}
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://use.hoop.dev/api/integrations/aws/iam/verify
{
"evaluation_details": [
{
"action_name": "ec2:DescribeInstances",
"decision": "allowed",
"matched_statements": [
{
"source_policy_id": "ANPAI3R4QMYGV2EXAMPL4",
"source_policy_type": "managed"
}
],
"resource_name": "arn:aws:ec2:us-west-2:123456789012:instance/i-0123456789abcdef0"
}
],
"identity": {
"account_id": "123456789012",
"arn": "arn:aws:iam::123456789012:user/johndoe",
"arn_id": "AIDACKCEVSQ6C2EXAMPLE",
"region": "us-west-2"
},
"status": "allowed"
}
Assistant
Responses are generated using AI and may contain mistakes.