List Organization Members
GET /organizations/me/members
Returns a paginated list of members in the currently active organization.Authentication
Requires organization membership.Query Parameters
Number of members to return per page
Number of members to skip for pagination
Response
Returns a paginated response containing organization members.Array of organization member objects
Total number of members in the organization
Number of items per page
Current pagination offset
Member Object Fields
Unique identifier for the membership record
ID of the organization
ID of the user
Member’s role:
owner, admin, or memberWhether member has read access to all boards by default
Whether member has write access to all boards by default
ISO 8601 timestamp when membership was created
ISO 8601 timestamp when membership was last updated
Embedded user information including
id, email, name, and preferred_nameArray of board-specific access overrides
Example Request
Example Response
Get Organization Member
GET /organizations/me/members/
Retrieve details about a specific organization member.Authentication
Requires organization membership. Non-admin members can only view their own membership details.Path Parameters
ID of the organization member to retrieve
Response
Returns a member object (same structure as list endpoint) including board access overrides.Error Responses
403 Forbidden
Non-admin users attempting to view other members’ details
404 Not Found
Member not found or does not belong to the organization
Update Organization Member
PATCH /organizations/me/members/
Update a member’s role in the organization. Requires admin privileges.Authentication
Requires organization admin or owner privileges.Path Parameters
ID of the organization member to update
Request Body
New role for the member:
owner, admin, or memberExample Request
Update Member Board Access
PUT /organizations/me/members//access
Update board-level access permissions for a member. Requires admin privileges.Authentication
Requires organization admin or owner privileges.Path Parameters
ID of the organization member to update
Request Body
Grant read access to all boards
Grant write access to all boards
Array of board-specific access overrides
Board Access Specification
ID of the board
Read permission for this specific board
Write permission for this specific board
Example Request
Error Responses
422 Unprocessable Content
One or more board IDs do not belong to the organization
Remove Organization Member
DELETE /organizations/me/members/
Remove a member from the organization. Requires admin privileges.Authentication
Requires organization admin or owner privileges.Path Parameters
ID of the organization member to remove
Response
Returns a success confirmation.Example Request
Error Responses
403 Forbidden
- Attempting to remove yourself
- Non-owners attempting to remove owners
404 Not Found
Member not found or does not belong to the organization
422 Unprocessable Content
Attempting to remove the last owner from the organization
Notes
- Members cannot remove themselves from organizations
- Only owners can remove other owners
- Organizations must have at least one owner at all times
- When a member is removed, their board access records are also deleted
- If the removed user had this organization as their active organization, it will automatically switch to another membership or null