# users.list Endpoint: GET /api/v1/users Version: 0.0.1 Security: user_session, form_session, component_session, component_token, api_token ## Query parameters: - `email` (string) - `page` (string) a string to be decoded into a number - `per_page` (string) a string to be decoded into a number ## Response 200 fields (application/json): - `data` (array, required) - `data.id` (string, required) User Identifier - `data.email` (string, required) - `data.created_at` (string, required) a string to be decoded into a DateTime.Utc - `data.updated_at` (string, required) a string to be decoded into a DateTime.Utc - `total` (number, required) - `current_page` (number, required) - `per_page` (number, required) - `total_pages` (number) ## Response 400 fields (application/json): - `issues` (array, required) - `issues._tag` (string, required) The tag identifying the type of parse issue Enum: "Pointer", "Unexpected", "Missing", "Composite", "Refinement", "Transformation", "Type", "Forbidden" - `issues.path` (array, required) The path to the property where the issue occurred - `issues.message` (string, required) A descriptive message explaining the issue - `message` (string, required) - `_tag` (string, required) Enum: "HttpApiDecodeError" ## Response 401 fields (application/json): - `message` (string, required) - `_tag` (string, required) Enum: "Unauthorized" ## Response 403 fields (application/json): - `message` (string, required) - `_tag` (string, required) Enum: "Forbidden"