action c19qrserver_post_user { label: "Create a user" description: "Use this endpoint to create a team member (user) record" provider: c19qrserver method: POST path: "/user" encoding: json input: { type: "object" 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 email address of the user record you want to create" } name: { type: "string" description: "The name of the user record you want to create" } read_only: { type: "boolean" description: "Not used in this version of the API. For future use." } } } output: { type: "object" description: "The object that's returned when a user record is created." properties: { email: { type: "string" description: "The user's email address" } guid: { type: "string" description: "The user's password reset code" } } } }