action kumpeapps_kkid_chorelist_post { label: "adds chore for given user" description: "By passing in the appropriate options, you can add a chore to given kid username under authenticated user's master account\n" provider: kumpeapps method: POST path: "/kkid/chorelist" encoding: json input: { type: "object" properties: { aiIcon: { type: "string" } blockDash: { type: "boolean" } canSteal: { type: "boolean" } choreDescription: { type: "string" } choreName: { type: "string" } choreNumber: { type: "integer" } day: { type: "string" enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Weekly", "Today"] } extraAllowance: { type: "integer" } isCalendar: { type: "boolean" } kidUsername: { type: "string" } nfcTag: { type: "string" } notes: { type: "string" } objectDetectionTag: { type: "string" } oneTime: { type: "boolean" } optional: { type: "boolean" } reassignable: { type: "boolean" } requireObjectDetection: { type: "boolean" } startDate: { type: "string" } status: { type: "string" } updatedByAutomation: { type: "boolean" } } required: ["choreName", "kidUsername"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }