Skip to content

List members API Reference

GET
/tenants/{tenant}/members
curl --request GET \
--url https://api.kupe.cloud/api/v1/tenants/acme/members \
--header 'Authorization: <Authorization>'

List all members of a tenant with their email addresses and roles.

tenant
required
string

Tenant name

List of members

Media type application/json
object
items
Array<object>
object
email
string
role
string
Example
{
"items": [
{
"email": "alice@acme.com",
"role": "admin"
}
]
}

Invalid tenant name

Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{
"code": "example",
"error": "example",
"field": "example",
"message": "example",
"severity": "example"
}

Missing or invalid authentication

Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{
"code": "example",
"error": "example",
"field": "example",
"message": "example",
"severity": "example"
}

Not a member of this tenant

Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{
"code": "example",
"error": "example",
"field": "example",
"message": "example",
"severity": "example"
}

Rate limit exceeded

Media type application/json
object
code
string
error
string
field
string
message
string
severity
string
Example generated
{
"code": "example",
"error": "example",
"field": "example",
"message": "example",
"severity": "example"
}