Api reference
List members of the caller's org
Paginated member list. Optional `search_query` substring-matches against email and name; optional `scope` filter selects `admin` or `user`.
Query Parameters
search_query?string|null
scope?|null
limit?Limit
Default
25Range
1 <= value <= 100offset?Offset
Default
0Range
0 <= valueHeader Parameters
org-id?string|null
x-user-id?string|null
x-request-id?string|null
traceparent?string|null
Idempotency-Key?|null
Response Body
application/json
application/json
curl -X GET "https://loading/v1/admin/org/members"{
"data": [
{
"id": "string",
"email": "user@example.com",
"name": "string",
"scope": "admin",
"created_at": "2019-08-24T14:15:22Z",
"last_active_at": "2019-08-24T14:15:22Z"
}
],
"pagination": {
"limit": 25,
"offset": 0,
"total": 0
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string"
}
]
}Partial update of the caller's own org (name only)
Only `name` may be edited (1-200 chars). `key` is immutable; sending `key` or `id` returns `422 immutable_field`. Returns the full org object on success.
Remove a member's account from the caller's org
Detaches the member from this org. The underlying user record is not deleted — a user may belong to multiple orgs. Returns `204 No Content`.