action c19qrserver_post_signin { label: "post_signin" description: "Create a new signin record" provider: c19qrserver method: POST path: "/signin" encoding: json input: { 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" } } } output: { type: "object" description: "Response when you successfully create a signin record" properties: { result: { type: "integer" } } } }