GET
/
integrations
/
aws
/
iam
/
userinfo
curl --request GET \
  --url https://use.hoop.dev/api/integrations/aws/iam/userinfo
{
  "account_id": "123456789012",
  "arn": "arn:aws:iam::123456789012:user/johndoe",
  "arn_id": "AIDACKCEVSQ6C2EXAMPLE",
  "region": "us-west-2"
}

Response

200
application/json
OK
account_id
string

AccountID is the unique identifier for the AWS account

Example:

"123456789012"

arn
string

ARN is the Amazon Resource Name that uniquely identifies the IAM user

Example:

"arn:aws:iam::123456789012:user/johndoe"

arn_id
string

UserID is the unique identifier for the IAM user

Example:

"AIDACKCEVSQ6C2EXAMPLE"

region
string

Region is the AWS region where the IAM user is operating

Example:

"us-west-2"