action c19qrserver_get_users { label: "Retrieve the information associated with all team members' user records" description: "Retrieve the information associated with all team members' user records\n" provider: c19qrserver method: GET path: "/users" encoding: json output: { type: "array" items: { type: "object" description: "A team member user record" properties: { admin: { type: "boolean" description: "If the user has admin privileges then the user will be able to create password reset requests on behalf of other users, and will also be able to view and edit the data of other users.\n" } email: { type: "string" description: "The user's email address" } id: { type: "integer" description: "The id of the user's record" } name: { type: "string" description: "The user's name" } read_only: { type: "boolean" description: "Not used in this version of the API. For future use." } } } } }