action kumpeapps_kkid_share_get { label: "Create Share Link" description: "Create share link" provider: kumpeapps method: GET path: "/kkid/share" encoding: json input: { type: "object" properties: { link: { type: "string" enum: ["https://khome.kumpeapps.com/portal/wish-list.php", "https://khome.kumpeapps.com/portal/chores-today.php"] } linkUserId: { type: "string" } scope: { type: "string" enum: ["WishList", "WishListAdmin", "Chores", "ChoresAdmin"] } scope2: { type: "string" enum: ["WishList", "WishListAdmin", "Chores", "ChoresAdmin"] } scope3: { type: "string" enum: ["WishList", "WishListAdmin", "Chores", "ChoresAdmin"] } scope4: { type: "string" enum: ["WishList", "WishListAdmin", "Chores", "ChoresAdmin"] } } required: ["link", "linkUserId", "scope"] additionalProperties: false } output: { type: "object" properties: { auth_link: { type: "string" } success: { type: "boolean" } } } }