List all Access Keys
POST/v1/providers/:provider_id/orgs/:org_id/keys
Lists all the access keys for a user in the organization account.
Request
Path Parameters
provider_id stringrequired
Provider ID
org_id stringrequired
Organization ID
- application/json
Body
required
user_id stringrequired
ID of the user for whom the access keys are being listed
user_role OrgMembership (string)
Possible values: [Admin
, Member
]
Role assigned to the user in the organization
Responses
- 200
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
keys
object[]
required
id stringrequired
Access key ID
name stringrequired
Name of the access key
status stringrequired
Possible values: [Active
, Inactive
]
Status of the access key.
buckets_roles
object[]
bucket_name stringrequired
Name of the bucket
role stringrequired
Possible values: [ReadOnly
, Editor
, Admin
]
The role assigned to the access key defines the permissions (read, write, admin) for the associated bucket.
{
"keys": [
{
"id": "string",
"name": "string",
"status": "Active",
"buckets_roles": [
{
"bucket_name": "string",
"role": "ReadOnly"
}
]
}
]
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "string"
}
Loading...