# Get organization user members **GET /api/organizations/{id}/users** Get users that are members of the specified organization for the given query with pagination. ## Servers - Logto endpoint address.: https://[tenant_id].logto.app (Logto endpoint address.) ## Authentication methods - O auth2 ## Parameters #### Path parameters - **id** (string) The unique identifier of the organization. #### Query parameters - **q** (string) The query to filter users. It will match multiple fields of users, including ID, name, username, email, and phone number. If not provided, all users will be returned. - **page** (integer) Page number (starts from 1). - **page_size** (integer) Entries per page. ## Responses ### 200: A list of users that are members of the organization. #### Body Parameters: application/json (array[object]) - **id** (string) - **username** (string | null) - **primaryEmail** (string | null) - **primaryPhone** (string | null) - **name** (string | null) - **avatar** (string | null) - **customData** (object) arbitrary - **identities** (object) - **lastSignInAt** (number | null) - **createdAt** (number) - **updatedAt** (number) - **profile** (object) - **applicationId** (string | null) - **isSuspended** (boolean) - **organizationRoles** (array[object]) ### 400: Bad Request ### 401: Unauthorized ### 403: Forbidden ### 404: Not Found [Powered by Bump.sh](https://bump.sh)