> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leamout.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Members

> Manage users and roles inside an organization.

Organization members connect users to an organization with a role and status.

The session-authenticated membership routes are:

```text theme={null}
POST   /v1/organizations/{organization_id}/members/
GET    /v1/organizations/{organization_id}/members/
GET    /v1/organizations/{organization_id}/members/{user_id}
PATCH  /v1/organizations/{organization_id}/members/{user_id}
DELETE /v1/organizations/{organization_id}/members/{user_id}
```

Creating a membership takes a `user_id` and `role`. Updating a membership changes its role.

Session authorization distinguishes read access from mutations. Organization owners and administrators can perform write operations; ordinary members are restricted from organization-scoped writes.
