action kumpeapps_kkid_allowance_post { label: "adds new allowance transaction to kidUserID" description: "By passing in the appropriate options, you can add an allowance transaction to a given user.\n" provider: kumpeapps method: POST path: "/kkid/allowance" encoding: json input: { type: "object" properties: { amount: { type: "number" } description: { type: "string" } kidUserId: { type: "integer" } transactionType: { type: "string" description: "Sort order:\n * `Add` - Add Allowance\n * `Subtract` - Subtract Allowance\n" enum: ["Add", "Subtract"] } } required: ["amount", "description", "kidUserId", "transactionType"] additionalProperties: false } output: { type: "object" description: "Success" properties: { message: { type: "string" } success: { type: "boolean" } } } }