action kumpeapps_kkid_chorelist_delete { label: "deletes chore for given chore id" description: "By passing in the appropriate options, you can delete a chore for the given chore id under authenticated user's master account\n" provider: kumpeapps method: DELETE path: "/kkid/chorelist" encoding: json input: { type: "object" properties: { idChoreList: { type: "integer" } } required: ["idChoreList"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }