action signl4_post_users_user_id_punch_in_as_manager { label: "Punch User in as Manager" description: "The specified user will be punched in to duty as a manager." provider: signl4 method: POST path: "/users/{userId}/punchInAsManager" 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 } }