action bunq_list_all_payment_auto_allocate_for_user { description: "List a users automatic payment auto allocated settings." provider: bunq method: GET path: "/user/{userID}/payment-auto-allocate" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { PaymentAutoAllocate: { type: "object" required: ["payment_id", "type", "definition"] properties: { definition: { type: "array" description: "The definition of how the money should be allocated." items: { type: "object" required: ["type"] properties: { amount: { type: "object" properties: { currency: { type: "string" description: "The currency of the amount. It is an ISO 4217 formatted currency code." } value: { type: "string" description: "The amount formatted to two decimal places." } } } counterparty_alias: { type: "object" properties: { name: { type: "string" description: "The alias name." } service: { type: "string" description: "The pointer service. Only required for external counterparties." } type: { type: "string" description: "The alias type, can be: EMAIL|PHONE_NUMBER|IBAN." } value: { type: "string" description: "The alias value." } } } created: { type: "string" description: "The timestamp when the PaymentAutoAllocateDefinition was created." } description: { type: "string" description: "The description for the payment." } fraction: { type: "integer" description: "The percentage of the triggering payment's amount to allocate." } id: { type: "integer" description: "The id of the PaymentAutoAllocateDefinition." } type: { type: "string" description: "The type of definition." } updated: { type: "string" description: "The timestamp when the PaymentAutoAllocateDefinition was last updated." } } } } payment_id: { type: "integer" description: "The payment that should be used to define the triggers for the payment auto allocate." } type: { type: "string" description: "Whether a payment should be sorted ONCE or RECURRING." } } } } } } }