action bunq_list_all_limit_for_user { description: "Get all limits for the authenticated user." provider: bunq method: GET path: "/user/{userID}/limit" encoding: json input: { type: "object" properties: { userID: { type: "integer" } } required: ["userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { limit_amount_monthly: { 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." } } } limit_card_debit_maestro: { type: "integer" description: "The limit of Maestro cards." } limit_card_debit_mastercard: { type: "integer" description: "The limit of MasterCard cards." } limit_card_debit_wildcard: { type: "integer" description: "DEPRECTATED: The limit of wildcards, e.g. Maestro or MasterCard cards." } limit_card_replacement: { type: "integer" description: "The limit of free replacement cards." } limit_card_wildcard: { type: "integer" description: "The limit of wildcards, e.g. Maestro or MasterCard cards." } limit_monetary_account: { type: "integer" description: "The limit of monetary accounts." } limit_monetary_account_remaining: { type: "integer" description: "The amount of additional monetary accounts you can create." } spent_amount_monthly: { type: "object" additionalProperties: true } } } } }