action kumpeapps_kkid_wishlist_post { label: "Add item to kid's wishlist" provider: kumpeapps method: POST path: "/kkid/wishlist" encoding: json input: { type: "object" properties: { description: { type: "string" } kidUserId: { type: "integer" } link: { type: "string" } priority: { type: "integer" } title: { type: "string" } } required: ["kidUserId", "title"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }