action c19qrserver_put_signin_signin_id { label: "Update a signin record" description: "Update a signin record\n" provider: c19qrserver method: PUT path: "/signin/{signinId}" encoding: json input: { type: "object" properties: { dt: { type: "number" description: "The original scan time in number of seconds since 1/1/1970 (GMT)" } email: { type: "string" description: "The person's email" } id: { type: "integer" description: "The record id" } name: { type: "string" description: "The person's name" } phone: { type: "string" description: "The person's phone number" } signinId: { type: "integer" } } required: ["name", "phone", "signinId"] 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." } } } }