Get organization memberships
GET/:realm/orgs/:orgId/members
Get a paginated list of users who are a member of the specified organization.
Request
Path Parameters
realm stringrequired
realm name (not id!)
orgId stringrequired
organization id
Query Parameters
search string
first int32
max int32
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
attributes
object
property name* any
createdTimestamp int64
email string
emailVerified boolean
enabled boolean
firstName string
groups string[]
id string
lastName string
username string
[
{
"attributes": {},
"createdTimestamp": 0,
"email": "string",
"emailVerified": true,
"enabled": true,
"firstName": "string",
"groups": [
"string"
],
"id": "string",
"lastName": "string",
"username": "string"
}
]
Loading...