action c19qrserver_get_user_user_id { label: "Retrieve the information associated with a team member's user record" description: "Retrieve the information associated with a user's account\n" provider: c19qrserver method: GET path: "/user/{userId}" encoding: json input: { type: "object" properties: { userId: { type: "integer" } } required: ["userId"] additionalProperties: false } output: { 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." } } } }