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

quoteFrontendPdf

Example Query
1mutation ExampleMutation($createdAt: Int, $isPreview: Boolean, $lang: String, $quoteId: Int, $storeHash: String) {
2 quoteFrontendPdf(createdAt: $createdAt, isPreview: $isPreview, lang: $lang, quoteId: $quoteId, storeHash: $storeHash) {
3 url
4 content
5 }
6}
Variables
1{
2 "createdAt": 0,
3 "isPreview": true,
4 "lang": "example",
5 "quoteId": 0,
6 "storeHash": "example"
7}
Example response
1{
2 "data": {
3 "quoteFrontendPdf": {
4 "url": "example",
5 "content": "example"
6 }
7 }
8}
Export a quote PDF. Requires either B2B or BC Token.
Was this page helpful?
Previous

quoteAttachFileCreate

Next

superAdminBeginMasquerade

Built with

Arguments

createdAtIntegerRequired
Created time of quote, timestamp. This field is required.
isPreviewBooleanOptional
If true, response will be a preview of the PDF, else a url of PDF file
langStringRequired
Language of quote. This field is required.
quoteIdIntegerRequired
Unique quote ID. This field is required.
storeHashStringRequired
Store Hash. This field is required.

Returns

an optional QuoteFrontendPdf
urlString
contentString