action bunq_list_all_invoice_for_user_monetary_account { description: "Used to view a bunq invoice." provider: bunq method: GET path: "/user/{userID}/monetary-account/{monetary-accountID}/invoice" encoding: json input: { type: "object" properties: { "monetary-accountID": { type: "integer" } userID: { type: "integer" } } required: ["monetary-accountID", "userID"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { address: { type: "object" properties: { city: { type: "string" description: "The city." } country: { type: "string" description: "The country as an ISO 3166-1 alpha-2 country code." } extra: { type: "string" description: "The apartment, building or other extra information for addresses." } house_number: { type: "string" description: "The house number." } is_user_address_updated: { type: "boolean" description: "To show whether user created or updated her address for app event listing." } mailbox_name: { type: "string" description: "The name on the mailbox (only used for Postal addresses)." } po_box: { type: "string" description: "The PO box." } postal_code: { type: "string" description: "The postal code." } province: { type: "string" description: "The province according to local standard." } street: { type: "string" description: "The street." } } } alias: { type: "object" properties: { avatar: { type: "object" properties: { anchor_uuid: { type: "string" description: "The public UUID of object this avatar is anchored to." } image: { type: "array" description: "The actual image information of this avatar." items: { type: "object" properties: { attachment_public_uuid: { type: "string" description: "The public UUID of the public attachment containing the image." } content_type: { type: "string" description: "The content-type as a MIME filetype." } height: { type: "integer" description: "The image height in pixels." } width: { type: "integer" description: "The image width in pixels." } } } } style: { type: "string" description: "The style (if applicable) for this Avatar." } uuid: { type: "string" description: "The public UUID of the avatar." } } } bunq_me: { 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." } } } country: { type: "string" description: "The country of the user. Formatted as a ISO 3166-1 alpha-2 country code." } display_name: { type: "string" description: "The name to display with this monetary account." } iban: { type: "string" description: "The IBAN of the monetary account." } is_light: { type: "boolean" description: "Whether or not the monetary account is light." } label_user: { type: "object" properties: { avatar: { type: "object" additionalProperties: true } country: { type: "string" description: "The country of the user. 000 stands for \"unknown\"" } display_name: { type: "string" description: "The name to be displayed for this user, as it was given on the request." } public_nick_name: { type: "string" description: "The current nickname of the user." } uuid: { type: "string" description: "The public UUID of the label-user." } } } merchant_category_code: { type: "string" description: "The merchant category code." } swift_account_number: { type: "string" description: "The account number used for a SWIFT payment. May or may not be an IBAN." } swift_bic: { type: "string" description: "The BIC used for a SWIFT payment." } transferwise_account_number: { type: "string" description: "The account number used for a Transferwise payment. May or may not be an IBAN." } transferwise_bank_code: { type: "string" description: "The bank code used for a Transferwise payment. May or may not be a BIC." } } } category: { type: "string" description: "The category to display to the user." } chamber_of_commerce_number: { type: "string" description: "The company's chamber of commerce number." } counterparty_address: { type: "object" additionalProperties: true } counterparty_alias: { type: "object" additionalProperties: true } created: { type: "string" description: "The timestamp of the invoice object's creation." } group: { type: "array" description: "The invoice item groups." items: { type: "object" properties: { instance_description: { type: "string" description: "The identifier of the invoice item group." } item: { type: "array" description: "The invoice items in the group." items: { type: "object" properties: { billing_date: { type: "string" description: "The billing date of the item." } id: { type: "integer" description: "The id of the invoice item." } quantity: { type: "integer" description: "The number of items priced." } total_vat_exclusive: { 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." } } } total_vat_inclusive: { type: "object" additionalProperties: true } type_description: { type: "string" description: "The price description." } type_description_translated: { type: "string" description: "The translated price description." } unit_vat_exclusive: { type: "object" additionalProperties: true } unit_vat_inclusive: { type: "object" additionalProperties: true } vat: { type: "integer" description: "The VAT tax fraction." } } } } product_vat_exclusive: { type: "object" additionalProperties: true } product_vat_inclusive: { type: "object" additionalProperties: true } type: { type: "string" description: "The type of the invoice item group." } type_description: { type: "string" description: "The description of the type of the invoice item group." } type_description_translated: { type: "string" description: "The translated description of the type of the invoice item group." } } } } id: { type: "integer" description: "The id of the invoice object." } invoice_date: { type: "string" description: "The invoice date." } invoice_number: { type: "string" description: "The invoice number." } request_reference_split_the_bill: { type: "array" description: "The reference to the object used for split the bill. Can be RequestInquiry or RequestInquiryBatch" items: { type: "object" properties: { id: { type: "integer" description: "The id of the request inquiry (batch)." } type: { type: "string" description: "The type of request inquiry. Can be RequestInquiry or RequestInquiryBatch." } } } } status: { type: "string" description: "The invoice status." } total_vat: { type: "object" additionalProperties: true } total_vat_exclusive: { type: "object" additionalProperties: true } total_vat_inclusive: { type: "object" additionalProperties: true } updated: { type: "string" description: "The timestamp of the invoice object's last update." } vat_number: { type: "string" description: "The company's chamber of commerce number." } } } } }