cURL
curl --request GET \ --url https://api.devin.ai/v3beta1/enterprise/organizations/{org_id}/members/users
{ "items": [ { "user_id": "<string>", "email": "<string>", "name": "<string>", "role_assignments": [ { "role": { "role_name": "<string>", "role_id": "<string>", "role_type": "enterprise" }, "org_id": "<string>" } ] } ], "end_cursor": "<string>", "has_next_page": false, "total": 123 }
Get all users that are part of an organization.
Look up member roles with account_id and org_id. Role assignments for the user are only for this org.
Show child attributes
Successful Response
Cursor to fetch the next page, or None if this is the last page.
Whether there are more items available after this page.
Optional total count (can be omitted for performance).