action kumpeapps_kkid_chorelist_put { label: "updates chore for given chore id" description: "By passing in the appropriate options, you can update the fields of a specific core within the authenticated user's master account\n" provider: kumpeapps method: PUT path: "/kkid/chorelist" encoding: json input: { type: "object" properties: { altitude: { type: "integer" } idChoreList: { type: "integer" } latitude: { type: "integer" } longitude: { type: "integer" } nfcTag: { type: "string" } notes: { type: "string" } status: { type: "string" } stolen: { type: "boolean" } stolenBy: { type: "string" } updatedByAutomation: { type: "boolean" } whereDay: { type: "string" enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Weekly", "Today"] } whereName: { type: "string" } whereStatus: { type: "string" } } required: ["idChoreList"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }