For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
      • Playground
          • MUTproductUpload
          • MUTproductAnonUpload
          • MUTupdateAccountSettings
          • MUTupdateCustomerAccountSettings
          • MUTinvoicePdf
          • MUTinvoicesExport
          • MUTinvoiceCreateBcCart
          • MUTinvoiceFinishBcPayment
          • MUTcreateOrder
          • MUTshoppingListsCreate
          • MUTshoppingListsUpdate
          • MUTshoppingListsDelete
          • MUTshoppingListsDuplicate
          • MUTshoppingListsItemsCreate
          • MUTshoppingListsItemsUpdate
          • MUTshoppingListsItemsDelete
          • MUTcustomerShoppingListsCreate
          • MUTcustomerShoppingListsUpdate
          • MUTcustomerShoppingListsDelete
          • MUTcustomerShoppingListsDuplicate
          • MUTcustomerShoppingListsItemsCreate
          • MUTcustomerShoppingListsItemsUpdate
          • MUTcustomerShoppingListsItemsDelete
          • MUTquoteCreate
          • MUTquoteUpdate
          • MUTquoteCheckout
          • MUTquoteOrdered
          • MUTquoteEmail
          • MUTquotePdfExport
          • MUTquoteAttachFileDelete
          • MUTquoteAttachFileCreate
          • MUTquoteFrontendPdf
          • MUTsuperAdminBeginMasquerade
          • MUTsuperAdminEndMasquerade
          • MUTcompanyCreate
          • MUTlogin
          • MUTcheckoutLogin
          • MUTauthorization
          • MUTuserCreate
          • MUTuserUpdate
          • MUTuserDelete
          • MUTstoreFrontToken
          • MUTcustomerCreate
          • MUTcustomerSubscribersCreate
          • MUTuserMasqueradingCompanyBegin
          • MUTuserMasqueradingCompanyEnd
          • MUTaddressCreate
          • MUTaddressUpdate
          • MUTaddressDelete
          • MUTcustomerAddressCreate
          • MUTcustomerAddressUpdate
          • MUTcustomerAddressDelete
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLB2BMutations

invoicesExport

Example Query
1mutation ExampleMutation($invoiceFilterData: InvoiceFilterDataType, $lang: String) {
2 invoicesExport(invoiceFilterData: $invoiceFilterData, lang: $lang) {
3 url
4 }
5}
Variables
1{
2 "invoiceFilterData": {
3 "search": "example",
4 "invoiceNumber": "example",
5 "orderNumber": "example",
6 "beginDateAt": 0,
7 "endDateAt": 0,
8 "status": [
9 0
10 ],
11 "idIn": "example",
12 "orderBy": "example",
13 "companyIds": [
14 0
15 ]
16 },
17 "lang": "example"
18}
Example response
1{
2 "data": {
3 "invoicesExport": {
4 "url": "example"
5 }
6 }
7}
Export invoice csv file. Requires a B2B Token.
Was this page helpful?
Previous

invoicePdf

Next

invoiceCreateBcCart

Built with

Arguments

invoiceFilterDataInvoiceFilterDataTypeOptional
langStringOptional
The language of the exported file.

Returns

an optional invoicesExport
urlString
The export file url.