action bunq_list_all_definition_for_user_monetary_account_payment_auto_alloc { description: "List all the definitions in a payment auto allocate." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/payment-auto-allocate/{payment-auto-allocateID}/definition" encoding: json input: { type: "object" properties: { "monetary-accountID": { type: "integer" } "payment-auto-allocateID": { type: "integer" } userID: { type: "integer" } } required: ["monetary-accountID", "payment-auto-allocateID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" 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." } updated: { type: "string" description: "The timestamp when the PaymentAutoAllocateDefinition was last updated." } } } } }