# List End Users Get a list of end users in the organization. Endpoint: GET /api/v1/end-users Version: 0.2.0 Security: bearerAuth ## Query parameters: - `sort_by` (array) Enum: "created_asc", "created_desc", "end_user_last_login_asc", "end_user_last_login_desc" - `include_count` (boolean) - `page` (integer) The page number to fetch. - `size` (integer) The number of items per page. - `user_ids` (array) The unique identifiers of the users. - `external_ids` (array) The external IDs of the users. ## Response 200 fields (application/json): - `total` (integer) - `page` (integer, required) - `size` (integer, required) - `end_users` (array, required) - `end_users.id` (string, required) The unique identifier of the object in the Fordefi platform. - `end_users.created_at` (string, required) The date and time when the object was created. - `end_users.modified_at` (string, required) The date and time when the object was last modified. Any change to any field of the resource is considered a modification. - `end_users.external_id` (string, required) The ID that you assigned to the end user. Example: "user|1234" - `end_users.last_login_at` (string, required) The timestamp when the end user last logged into the mobile SDK. ## Response 400 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. - `system_error_code` (string) An additional system error code in Fordefi. ## Response 401 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 403 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 408 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 422 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (array, required) - `detail.loc` (array, required) - `detail.msg` (string, required) - `detail.type` (string, required) - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes. ## Response 500 fields (application/json): - `title` (string, required) Human-readable error message. - `detail` (string, required) Detailed error message. - `full_detail` (string) Full error message with additional details, if available. - `request_id` (string) Request ID - for debugging purposes.