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

quoteCheckout

Example Query
1mutation ExampleMutation($id: Int, $storeHash: String, $uuid: String) {
2 quoteCheckout(id: $id, storeHash: $storeHash, uuid: $uuid) {
3 quoteCheckout {
4 checkoutUrl
5 cartId
6 cartUrl
7 }
8 }
9}
Variables
1{
2 "id": 0,
3 "storeHash": "example",
4 "uuid": "example"
5}
Example response
1{
2 "data": {
3 "quoteCheckout": {
4 "quoteCheckout": {
5 "checkoutUrl": "example",
6 "cartId": "example",
7 "cartUrl": "example"
8 }
9 }
10 }
11}
Get the checkout information for a quote. Requires a B2B token for B2B and B2C users Token is not required for guest users, but store must allow guest quotes.
Was this page helpful?
Previous

quoteUpdate

Next

quoteOrdered

Built with

Arguments

idIntegerRequired
Unique quote id. This field is required.
storeHashStringRequired
Store Hash. This field is required.
uuidStringOptional
Unique quote UUID.

Returns

an optional QuoteCheckout
quoteCheckoutQuoteCheckoutType