action kumpeapps_kkid_apns_post { label: "subscribes/unsubscribes/registers for apns push notifications" provider: kumpeapps method: POST path: "/kkid/apns" encoding: json input: { type: "object" properties: { badge: { type: "integer" } devicename: { type: "string" } kidUserId: { type: "integer" } message: { type: "string" } priority: { type: "string" enum: ["passive", "active", "time-sensitive", "critical"] } section: { type: "string" enum: ["Chores", "Chores-New", "Chores-Reminders", "Allowance", "Allowance-New", "WishList"] } sound: { type: "string" } title: { type: "string" } token: { type: "string" } tool: { type: "string" enum: ["register", "subscribe", "unsubscribe", "send"] } } required: ["kidUserId", "tool"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }