action kumpeapps_kkid_allowance_get { label: "returns allowance balance and allowance transactions" description: "By passing in the appropriate options, you can view allowance balance and allowance transactions for a given user provided that they are within the masterID account of the authenticated user.\n" provider: kumpeapps method: GET path: "/kkid/allowance" encoding: json input: { type: "object" properties: { kidUserId: { type: "integer" } transactionDays: { type: "integer" } } required: ["kidUserId"] additionalProperties: false } output: { type: "object" description: "Allowance" properties: { allowanceTransaction: { type: "array" items: { type: "object" properties: { amount: { type: "integer" } date: { type: "string" } transactionDescription: { type: "string" } transactionId: { type: "integer" } transactionType: { type: "string" } userId: { type: "integer" } } } } balance: { type: "integer" } id: { type: "integer" } lastUpdated: { type: "string" } success: { type: "integer" } } } }