action kumpeapps_kkid_wishlist_get { label: "Get list of wishlist items" provider: kumpeapps method: GET path: "/kkid/wishlist" encoding: json input: { type: "object" properties: { kidUserId: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "Allowance" properties: { success: { type: "boolean" } wish: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "integer" } link: { type: "string" } master_id: { type: "integer" } priority: { type: "integer" } title: { type: "string" } user_id: { type: "integer" } } } } } } }