action c19qrserver_get_signin_signin_id { label: "Retrieve the information associated with a signin record" description: "Retrieve the information associated with a signin record\n" provider: c19qrserver method: GET path: "/signin/{signinId}" encoding: json input: { type: "object" properties: { signinId: { type: "integer" } } required: ["signinId"] additionalProperties: false } output: { type: "object" description: "Payload of signin object" required: ["name", "phone"] 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" } } } }