# List Organization Users (Admin) **GET /api/v1/orgs/me/users** Retrieves a paginated list of all users belonging to the authenticated user's organization. Requires admin role. ## Servers - http://api.example.com: http://api.example.com () ## Authentication methods - Bearer auth ## Parameters ### Query parameters - **limit** (integer) Number of users per page - **offset** (integer) Offset for pagination ## Responses ### 200 List of users in the organization #### Body: application/json (array[object]) - **created_at** (string) - **email** (string) - **first_name** (string) - **id** (integer) - **last_login_at** (string) - **last_name** (string) - **organization_id** (integer) - **role** (string) - **updated_at** (string) ### 401 Unauthorized (JWT invalid/missing or Org ID not found) #### Body: application/json (object) - ***** (string) ### 403 Forbidden (User does not have admin role)" // Assuming RoleRequired middleware handles this #### Body: application/json (object) - ***** (string) ### 500 Failed to get users #### Body: application/json (object) - ***** (string) [Powered by Bump.sh](https://bump.sh)