HTTP Operation Type Object
Query organizationSalesSetupDocsCustomizationByOrgId

Description

The organizationSalesSetupDocsCustomizationByOrgId operation allows developers to fetch the sales document customization settings configured for a specific organization.

These settings control the layout, style, content, and export options applied to sales documents such as quotes, orders, delivery notes, invoices, and credit notes.

graphQL Query
query ($id: ID!) {
    organizationSalesSetupDocsCustomizationByOrgId(id: $id) {
        id
        creationDate
        modificationDate
        logoSizePercentage
        salesDocumentCustomizationLogoPosition
        salesDocumentCustomizationCompanyDetailsPosition
        salesDocumentCustomizationCustomerAddressPosition
        salesDocumentCustomizationDescriptionWidth
        salesDocumentCustomizationStyle
        salesDocumentCustomizationFontFamilyName
        salesDocumentCustomizationFontSize
        salesDocumentCustomizationFontColor
        salesDocumentCustomizationBackgroundImageFit
        salesDocumentCustomizationBackgroundImageOpacity
        applyExportColorToAllDocuments
        salesOffersExportColor
        salesOrdersExportColor
        salesDeliveryNotesExportColor
        salesInvoicesExportColor
        salesCreditNotesExportColor
        showProductCodeOffers
        showProductNameOffers
        showProductDescriptionOffers
        showProductCodeOrders
        showProductNameOrders
        showProductDescriptionOrders
        showProductCodeDeliveryNotes
        showProductNameDeliveryNotes
        showProductDescriptionDeliveryNotes
        showPricingAndAmountDeliveryNotes
        showProductCodeInvoices
        showProductNameInvoices
        showProductDescriptionInvoices
        showDeliveryAddressInvoices
        salesInvoicesIntroText
        showProductCodeCreditNotes
        showProductNameCreditNotes
        showProductDescriptionCreditNotes
        showDeliveryAddressCreditNotes
        salesCreditNotesIntroText
        salesOffersIntroText
        salesOrdersIntroText
        salesDeliveryNotesIntroText
        specialMention
        legalTextFirstLine
        legalTextSecondLine
        numberOfCopiesForQuotes
        numberOfCopiesForOrders
        numberOfCopiesForInvoices
        numberOfCopiesForCreditNotes
        numberOfCopiesForReceipts
    }
}
graphQL Variables

{
    "id":"{{X-OrganizationId}}"
}

Example Response
{
    "data": {
        "organizationSalesSetupDocsCustomizationByOrgId": {
            "id": "01234567-89ab-cdef-0123-456789abcdef",
            "creationDate": "2026-06-01T10:00:00Z",
            "modificationDate": "2026-06-15T14:30:00Z",
            "logoSizePercentage": 50,
            "salesDocumentCustomizationFontColor": "#000000",
            "salesDocumentCustomizationBackgroundImageOpacity": 100,
            "applyExportColorToAllDocuments": false,
            "salesOffersExportColor": "#000000",
            "salesOrdersExportColor": "#000000",
            "salesDeliveryNotesExportColor": "#000000",
            "salesInvoicesExportColor": "#000000",
            "salesCreditNotesExportColor": "#000000",
            "showProductCodeOffers": true,
            "showProductNameOffers": true,
            "showProductDescriptionOffers": true,
            "showProductCodeOrders": true,
            "showProductNameOrders": true,
            "showProductDescriptionOrders": true,
            "showProductCodeDeliveryNotes": true,
            "showProductNameDeliveryNotes": true,
            "showProductDescriptionDeliveryNotes": true,
            "showPricingAndAmountDeliveryNotes": false,
            "showProductCodeInvoices": true,
            "showProductNameInvoices": true,
            "showProductDescriptionInvoices": true,
            "showDeliveryAddressInvoices": false,
            "salesInvoicesIntroText": "",
            "showProductCodeCreditNotes": true,
            "showProductNameCreditNotes": true,
            "showProductDescriptionCreditNotes": true,
            "showDeliveryAddressCreditNotes": false,
            "salesCreditNotesIntroText": "",
            "salesOffersIntroText": "",
            "salesOrdersIntroText": "",
            "salesDeliveryNotesIntroText": "",
            "specialMention": "Payment is due within 30 days. Late payments may incur interest charges.",
            "legalTextFirstLine": "Acme Trading Ltd - 12 Commerce Street, 75001 Paris - [email protected]",
            "legalTextSecondLine": "SIRET 123 456 789 00012 - VAT FR12345678901",
            "numberOfCopiesForQuotes": 1,
            "numberOfCopiesForOrders": 1,
            "numberOfCopiesForInvoices": 1,
            "numberOfCopiesForCreditNotes": 1,
            "numberOfCopiesForReceipts": 1
        }
    }
}
Key Value
Authorization Bearer Current access Token How to find?
X-TenantId Current tenant id Why deprecated ?
X-OrganizationId Current organization Id How to find?
x-api-key Primary or secondary subscription key of your app How to find?

organizationSalesSetupDocsCustomizationByOrgId

Fields Type Description
id UUID Id
creationDate DateTime Creation Date
modificationDate DateTime Modification Date
     
Layout    
logoSizePercentage Int Logo size percentage
salesDocumentCustomizationLogoPosition LogoPosition Business logo position on sales documents
salesDocumentCustomizationCompanyDetailsPosition CompanyDetailsPosition Business details position on sales documents
salesDocumentCustomizationCustomerAddressPosition CustomerAddressPosition Customer address position on sales documents
salesDocumentCustomizationDescriptionWidth DescriptionWidth Product or service description width on sales documents
     
Style    
salesDocumentCustomizationStyle Style Sales document customization style
salesDocumentCustomizationFontFamilyName FontFamilyName Default font family
salesDocumentCustomizationFontSize FontSize Default font size
salesDocumentCustomizationFontColor String Default font colour (HEX code)
salesDocumentCustomizationBackgroundImageFit BackgroundImageFit Background image fit mode
salesDocumentCustomizationBackgroundImageOpacity Int Background image opacity
     
Colour scheme    
applyExportColorToAllDocuments Boolean Apply the same export colour to all document types
salesOffersExportColor String Export colour for quotes (HEX code)
salesOrdersExportColor String Export colour for orders (HEX code)
salesDeliveryNotesExportColor String Export colour for delivery notes (HEX code)
salesInvoicesExportColor String Export colour for invoices (HEX code)
salesCreditNotesExportColor String Export colour for credit notes (HEX code)
     
Items table (Quotes)    
showProductCodeOffers Boolean Show product or service code on quotes
showProductNameOffers Boolean Show product or service name on quotes
showProductDescriptionOffers Boolean Show product or service description on quotes
salesOffersIntroText String Personalised introduction text for quotes
     
Items table (Orders)    
showProductCodeOrders Boolean Show product or service code on orders
showProductNameOrders Boolean Show product or service name on orders
showProductDescriptionOrders Boolean Show product or service description on orders
salesOrdersIntroText String Personalised introduction text for orders
     
Items table (Delivery notes)    
showProductCodeDeliveryNotes Boolean Show product or service code on delivery notes
showProductNameDeliveryNotes Boolean Show product or service name on delivery notes
showProductDescriptionDeliveryNotes Boolean Show product or service description on delivery notes
showPricingAndAmountDeliveryNotes Boolean Show pricing and amount on delivery notes
salesDeliveryNotesIntroText String Personalised introduction text for delivery notes
     
Items table (Invoices)    
showProductCodeInvoices Boolean Show product or service code on invoices
showProductNameInvoices Boolean Show product or service name on invoices
showProductDescriptionInvoices Boolean Show product or service description on invoices
showDeliveryAddressInvoices Boolean Show the delivery address on invoices
salesInvoicesIntroText String Personalised introduction text for invoices
     
Items table (Credit notes)    
showProductCodeCreditNotes Boolean Show product or service code on credit notes
showProductNameCreditNotes Boolean Show product or service name on credit notes
showProductDescriptionCreditNotes Boolean Show product or service description on credit notes
showDeliveryAddressCreditNotes Boolean Show the delivery address on credit notes
salesCreditNotesIntroText String Personalised introduction text for credit notes
     
Footer details    
specialMention String Final notes displayed at the end of sales documents
legalTextFirstLine String First line of footer legal or contact information
legalTextSecondLine String Second line of footer legal or contact information
     
Number of copies    
numberOfCopiesForQuotes Int Number of copies generated for quotes
numberOfCopiesForOrders Int Number of copies generated for orders
numberOfCopiesForInvoices Int Number of copies generated for invoices
numberOfCopiesForCreditNotes Int Number of copies generated for credit notes
numberOfCopiesForReceipts Int Number of copies generated for receipts
Info
  • logoSizePercentage: Defines the logo size used on sales documents.

  • salesDocumentCustomizationLogoPosition
  • salesDocumentCustomizationCompanyDetailsPosition
  • salesDocumentCustomizationCustomerAddressPosition
  • salesDocumentCustomizationDescriptionWidth
    Control the layout of the business logo, company details, customer address, and product description on sales documents.

  • salesDocumentCustomizationStyle
  • salesDocumentCustomizationFontFamilyName
  • salesDocumentCustomizationFontSize
  • salesDocumentCustomizationFontColor
    Define the default style and typography applied to sales documents.

  • salesDocumentCustomizationBackgroundImageFit
  • salesDocumentCustomizationBackgroundImageOpacity
    Configure the background image display on sales documents.

  • applyExportColorToAllDocuments
  • salesOffersExportColor
  • salesOrdersExportColor
  • salesDeliveryNotesExportColor
  • salesInvoicesExportColor
  • salesCreditNotesExportColor
    Define the colour scheme used when exporting sales documents to PDF.

  • showProductCodeXXX
  • showProductNameXXX
  • showProductDescriptionXXX
    Control which product or service details are displayed in the items table for each document type.

  • showPricingAndAmountDeliveryNotes: Indicates whether pricing and amount columns are shown on delivery notes.

  • showDeliveryAddressInvoices
  • showDeliveryAddressCreditNotes
    Indicate whether the delivery address is displayed on invoices and credit notes.

  • salesXXXIntroText: Default personalised introduction text for the corresponding document type.

  • specialMention
  • legalTextFirstLine
  • legalTextSecondLine
    Footer content displayed on sales documents.

  • numberOfCopiesForXXX: Number of copies generated when printing or exporting the corresponding document type.