action signl4_post_users_user_id_punch_in { label: "Punch User in" description: "The specified user will be punched in to duty." provider: signl4 method: POST path: "/users/{userId}/punchIn" encoding: json input: { type: "object" properties: { userId: { type: "string" } } required: ["userId"] additionalProperties: false } output: { type: "object" properties: { lastStatusChange: { type: "string" format: "date-time" } onDuty: { type: "boolean" } onManagerDuty: { type: "boolean" } overdue: { type: "boolean" } } additionalProperties: false } }