action kumpeapps_kkid_chorelist_get { label: "returns list of chores for given user" description: "By passing in the appropriate options, you can search for\nchores assigned to a given user within the authenticated user's master account\n" provider: kumpeapps method: GET path: "/kkid/chorelist" encoding: json input: { type: "object" properties: { blockDash: { type: "boolean" } canSteal: { type: "boolean" } day: { type: "string" enum: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Weekly"] } includeCalendar: { type: "boolean" } kidUsername: { type: "string" } optional: { type: "boolean" } status: { type: "string" } } additionalProperties: false } output: { type: "object" description: "chorelist" properties: { chore: { type: "array" items: { type: "object" description: "chore" properties: { aiIcon: { type: "string" } altitude: { type: "integer" } blockDash: { type: "boolean" } choreDescription: { type: "string" } choreName: { type: "string" } choreNumber: { type: "integer" } day: { type: "string" } extraAllowance: { type: "integer" } idChoreList: { type: "integer" } isCalendar: { type: "boolean" } kid: { type: "string" } latitude: { type: "integer" } longitude: { type: "integer" } nfcTag: { type: "string" } notes: { type: "string" } oneTime: { type: "boolean" } optional: { type: "boolean" } reassignable: { type: "boolean" } reassigned: { type: "boolean" } requireObjectDetection: { type: "string" } startDate: { type: "string" } status: { type: "string" } stolen: { type: "boolean" } stolenBy: { type: "string" } updated: { type: "string" } updatedBy: { type: "string" } } } } success: { type: "integer" } } } }