Optimizely Orderapprovals API

The Orderapprovals API from Optimizely — 2 operation(s) for orderapprovals.

Operations 2

GET /api/v1/orderapprovals #
GET /api/v1/orderapprovals/{cartId} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/optimizely-orderapprovals-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

optimizely-orderapprovals-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: storefront-v1
  title: Storefront API V1 Orderapprovals API
servers:
- url: https://dogfood.commerce.insitesandbox.com
security: []
tags:
- name: Orderapprovals
paths:
  /api/v1/orderapprovals:
    get:
      tags:
      - Orderapprovals
      operationId: OrderApprovalsV1_GetCollectionAsync
      parameters:
      - name: parameter.shipToId
        in: query
        required: false
        schema:
          type: string
          format: uuid
      - name: parameter.orderNumber
        in: query
        required: false
        schema:
          type: string
      - name: parameter.fromDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: parameter.toDate
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: parameter.orderTotalOperator
        in: query
        required: false
        schema:
          type: string
      - name: parameter.orderTotal
        in: query
        required: false
        schema:
          type: number
          format: decimal
      - name: parameter.page
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: parameter.pageSize
        in: query
        required: false
        schema:
          type: integer
          format: int32
      - name: parameter.sort
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insite.OrderApproval.WebApi.V1.ApiModels.OrderApprovalCollectionModel'
            text/json:
              schema:
                $ref: '#/components/schemas/Insite.OrderApproval.WebApi.V1.ApiModels.OrderApprovalCollectionModel'
            application/xml:
              schema:
                $ref: '#/components/schemas/Insite.OrderApproval.WebApi.V1.ApiModels.OrderApprovalCollectionModel'
            text/xml:
              schema:
                $ref: '#/components/schemas/Insite.OrderApproval.WebApi.V1.ApiModels.OrderApprovalCollectionModel'
            text/html:
              schema:
                $ref: '#/components/schemas/Insite.OrderApproval.WebApi.V1.ApiModels.OrderApprovalCollectionModel'
      security:
      - access_token: []
  /api/v1/orderapprovals/{cartId}:
    get:
      tags:
      - Orderapprovals
      operationId: OrderApprovalsV1_GetAsync
      parameters:
      - name: cartId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartModel'
            text/json:
              schema:
                $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartModel'
            application/xml:
              schema:
                $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartModel'
            text/xml:
              schema:
                $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartModel'
            text/html:
              schema:
                $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartModel'
      security:
      - access_token: []
components:
  schemas:
    Insite.Websites.WebApi.V1.ApiModels.CountryModel:
      type: object
      properties:
        uri:
          type: string
        id:
          type: string
        name:
          type: string
        abbreviation:
          type: string
        states:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Websites.WebApi.V1.ApiModels.StateModel'
        properties:
          type: object
          additionalProperties:
            type: string
    Insite.Catalog.Services.Dtos.ConfigSectionOptionDto:
      type: object
      properties:
        sectionOptionId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        sectionName:
          type: string
        productName:
          type: string
        productId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        description:
          type: string
        price:
          format: decimal
          type: number
        userProductPrice:
          type: boolean
        selected:
          type: boolean
        sortOrder:
          format: int32
          type: integer
        quantity:
          format: decimal
          type: number
        cantBuy:
          type: boolean
    Insite.Core.WebApi.PaginationModel:
      type: object
      properties:
        currentPage:
          format: int32
          type: integer
        page:
          format: int32
          type: integer
        pageSize:
          format: int32
          type: integer
        defaultPageSize:
          format: int32
          type: integer
        totalItemCount:
          format: int32
          type: integer
        numberOfPages:
          format: int32
          type: integer
        pageSizeOptions:
          type: array
          items:
            format: int32
            type: integer
        sortOptions:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.WebApi.SortOptionModel'
        sortType:
          type: string
        nextPageUri:
          type: string
        prevPageUri:
          type: string
        nextPageToken:
          type: string
    Insite.Customers.Services.Dtos.AgingBucketDto:
      type: object
      properties:
        amount:
          format: decimal
          type: number
        amountDisplay:
          type: string
        label:
          type: string
    Insite.Cart.Services.Dtos.WarehouseDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        address1:
          type: string
        address2:
          type: string
        city:
          type: string
        countryId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        description:
          type: string
        isDefault:
          type: boolean
        name:
          type: string
        phone:
          type: string
        postalCode:
          type: string
        shipSite:
          type: string
        state:
          type: string
    Insite.Catalog.Services.Dtos.ConfigSectionDto:
      type: object
      properties:
        sectionName:
          type: string
        label:
          type: string
        options:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.ConfigSectionOptionDto'
    Insite.Cart.Services.Dtos.CarrierDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        description:
          type: string
        shipVias:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.ShipViaDto'
    Insite.Catalog.WebApi.V1.ApiModels.WarehouseModel:
      type: object
      properties:
        uri:
          type: string
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        address1:
          type: string
        address2:
          type: string
        city:
          type: string
        contactName:
          type: string
        countryId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        deactivateOn:
          format: date-time
          type: string
        description:
          type: string
        phone:
          type: string
        postalCode:
          type: string
        shipSite:
          type: string
        state:
          type: string
        isDefault:
          type: boolean
        alternateWarehouses:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Catalog.WebApi.V1.ApiModels.WarehouseModel'
        latitude:
          format: decimal
          type: number
        longitude:
          format: decimal
          type: number
        hours:
          type: string
        distance:
          format: double
          type: number
        allowPickup:
          type: boolean
        pickupShipViaId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        properties:
          type: object
          additionalProperties:
            type: string
    Insite.Customers.Services.Dtos.AccountsReceivableDto:
      type: object
      properties:
        agingBuckets:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Customers.Services.Dtos.AgingBucketDto'
        agingBucketTotal:
          $ref: '#/components/schemas/Insite.Customers.Services.Dtos.AgingBucketDto'
        agingBucketFuture:
          $ref: '#/components/schemas/Insite.Customers.Services.Dtos.AgingBucketDto'
    Insite.Catalog.Services.Dtos.BadgeDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        tagName:
          type: string
        badgeStyle:
          type: string
        sortOrder:
          format: int32
          type: integer
        badgeType:
          type: string
        displayOnProductImages:
          type: boolean
        displayOnBadgeWidget:
          type: boolean
        displayText:
          type: string
        textColorHexCode:
          type: string
        badgeColorHexCode:
          type: string
        largeImageBadgePath:
          type: string
        largeImageTextSize:
          type: string
        largeImagePlacement:
          type: string
        otherImageBadgePath:
          type: string
        otherImageTextSize:
          type: string
        otherImagePlacement:
          type: string
        imageAltText:
          type: string
        detailWidgetBadgeSize:
          type: string
    Insite.Catalog.Services.Dtos.BrandDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        urlSegment:
          type: string
        logoSmallImagePath:
          type: string
        logoLargeImagePath:
          type: string
        logoImageAltText:
          type: string
        detailPagePath:
          type: string
    Insite.Cart.WebApi.V1.ApiModels.CartLineModel:
      required:
      - productId
      - qtyOrdered
      type: object
      properties:
        uri:
          type: string
        productUri:
          type: string
        id:
          type: string
        line:
          format: int32
          type: integer
        productId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        requisitionId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        smallImagePath:
          type: string
        altText:
          type: string
        productName:
          type: string
        manufacturerItem:
          type: string
        customerName:
          type: string
        shortDescription:
          type: string
        erpNumber:
          type: string
        unitOfMeasure:
          type: string
        unitOfMeasureDisplay:
          type: string
        unitOfMeasureDescription:
          type: string
        baseUnitOfMeasure:
          type: string
        baseUnitOfMeasureDisplay:
          type: string
        qtyPerBaseUnitOfMeasure:
          format: decimal
          type: number
        costCode:
          type: string
        notes:
          type: string
        qtyOrdered:
          format: double
          type: number
        qtyLeft:
          format: decimal
          type: number
        pricing:
          $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.ProductPriceDto'
        isPromotionItem:
          type: boolean
        isDiscounted:
          type: boolean
        isConfigured:
          type: boolean
        isFixedConfiguration:
          type: boolean
        quoteRequired:
          type: boolean
        breakPrices:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.BreakPriceDto'
        sectionOptions:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.SectionOptionDto'
        availability:
          $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.AvailabilityDto'
        qtyOnHand:
          format: decimal
          type: number
        canAddToCart:
          type: boolean
        isQtyAdjusted:
          type: boolean
        hasInsufficientInventory:
          type: boolean
        canBackOrder:
          type: boolean
        trackInventory:
          type: boolean
        salePriceLabel:
          type: string
        cantBuy:
          type: boolean
        isSubscription:
          type: boolean
        productSubscription:
          $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.ProductSubscriptionDto'
        isRestricted:
          type: boolean
        canAddToWishlist:
          type: boolean
        isActive:
          type: boolean
        brand:
          $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.BrandDto'
        vmiBinId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        isDiscontinued:
          type: boolean
        allowZeroPricing:
          type: boolean
        parentProductErpNumber:
          type: string
        properties:
          type: object
          additionalProperties:
            type: string
    Insite.Catalog.Services.Dtos.RelatedProductDto:
      type: object
      properties:
        relatedProductType:
          type: string
        productDto:
          $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.ProductDto'
    Insite.Cart.Services.Dtos.PaymentOptionsDto:
      type: object
      properties:
        paymentMethods:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.PaymentMethodDto'
        cardTypes:
          type: array
          items:
            type: string
        expirationMonths:
          type: array
          items:
            type: string
        expirationYears:
          type: array
          items:
            type: string
        creditCard:
          $ref: '#/components/schemas/Insite.Core.Plugins.PaymentGateway.Dtos.CreditCardDto'
        eCheck:
          $ref: '#/components/schemas/Insite.Core.Plugins.PaymentGateway.Dtos.ECheckDto'
        canStorePaymentProfile:
          type: boolean
        storePaymentProfile:
          type: boolean
        isPayPal:
          type: boolean
        isAdyenDropIn:
          type: boolean
        payPalPayerId:
          type: string
        payPalToken:
          type: string
        payerId:
          type: string
        payPalPaymentUrl:
          type: string
        threeDs:
          $ref: '#/components/schemas/Insite.Core.Plugins.PaymentGateway.Dtos.ThreeDsDto'
        adyenPspReference:
          type: string
        isBnpl:
          type: boolean
        bnplTransactionToken:
          type: string
        bnplClientSecret:
          type: string
    Insite.Core.Plugins.Search.Dtos.ScoreExplanationDto:
      type: object
      properties:
        totalBoost:
          format: float
          type: number
        aggregateFieldScores:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Search.Dtos.FieldScoreDto'
        detailedFieldScores:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Search.Dtos.FieldScoreDetailedDto'
    Insite.Core.WebApi.SortOptionModel:
      type: object
      properties:
        displayName:
          type: string
        sortType:
          type: string
    Insite.Cart.WebApi.V1.ApiModels.CartModel:
      type: object
      properties:
        uri:
          type: string
        cartLinesUri:
          type: string
        id:
          type: string
        trackId:
          type: string
        status:
          type: string
        statusDisplay:
          type: string
        type:
          type: string
        typeDisplay:
          type: string
        orderNumber:
          type: string
        erpOrderNumber:
          type: string
        orderDate:
          format: date-time
          type: string
        billTo:
          $ref: '#/components/schemas/Insite.Customers.WebApi.V1.ApiModels.BillToModel'
        shipTo:
          $ref: '#/components/schemas/Insite.Customers.WebApi.V1.ApiModels.ShipToModel'
        userLabel:
          type: string
        userRoles:
          type: string
        shipToLabel:
          type: string
        notes:
          type: string
        carrier:
          $ref: '#/components/schemas/Insite.Cart.Services.Dtos.CarrierDto'
        shipVia:
          $ref: '#/components/schemas/Insite.Cart.Services.Dtos.ShipViaDto'
        paymentMethod:
          $ref: '#/components/schemas/Insite.Cart.Services.Dtos.PaymentMethodDto'
        fulfillmentMethod:
          type: string
        requestedPickupDate:
          type: string
        poNumber:
          type: string
        promotionCode:
          type: string
        initiatedByUserName:
          type: string
        totalQtyOrdered:
          format: int32
          type: integer
        lineCount:
          format: int32
          type: integer
        totalCountDisplay:
          format: int32
          type: integer
        quoteRequiredCount:
          format: int32
          type: integer
        orderSubTotal:
          format: decimal
          type: number
        orderSubTotalDisplay:
          type: string
        orderSubTotalWithOutProductDiscounts:
          format: decimal
          type: number
        orderSubTotalWithOutProductDiscountsDisplay:
          type: string
        totalTax:
          format: decimal
          type: number
        totalTaxDisplay:
          type: string
        shippingAndHandling:
          format: decimal
          type: number
        shippingAndHandlingDisplay:
          type: string
        orderGrandTotal:
          format: decimal
          type: number
        orderGrandTotalDisplay:
          type: string
        costCodeLabel:
          type: string
        isAuthenticated:
          type: boolean
        isGuestOrder:
          type: boolean
        isSalesperson:
          type: boolean
        isSubscribed:
          type: boolean
        requiresPoNumber:
          type: boolean
        displayContinueShoppingLink:
          type: boolean
        canModifyOrder:
          type: boolean
        canSaveOrder:
          type: boolean
        canBypassCheckoutAddress:
          type: boolean
        canRequisition:
          type: boolean
        canRequestQuote:
          type: boolean
        canEditCostCode:
          type: boolean
        showTaxAndShipping:
          type: boolean
        showLineNotes:
          type: boolean
        showCostCode:
          type: boolean
        showNewsletterSignup:
          type: boolean
        showPoNumber:
          type: boolean
        showCreditCard:
          type: boolean
        showECheck:
          type: boolean
        showPayPal:
          type: boolean
        enableGooglePay:
          type: boolean
        enableApplePay:
          type: boolean
        isAwaitingApproval:
          type: boolean
        requiresApproval:
          type: boolean
        approverReason:
          type: string
        hasApprover:
          type: boolean
        salespersonName:
          type: string
        paymentOptions:
          $ref: '#/components/schemas/Insite.Cart.Services.Dtos.PaymentOptionsDto'
        costCodes:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.CostCodeDto'
        carriers:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.CarrierDto'
        warehouses:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.WarehouseDto'
        cartLines:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CartLineModel'
        customerOrderTaxes:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Cart.Services.Dtos.CustomerOrderTaxDto'
        canCheckOut:
          type: boolean
        hasInsufficientInventory:
          type: boolean
        currencySymbol:
          type: string
        requestedDeliveryDate:
          type: string
        requestedDeliveryDateDisplay:
          format: date-time
          type: string
        cartNotPriced:
          type: boolean
        messages:
          type: array
          items:
            type: string
        creditCardBillingAddress:
          $ref: '#/components/schemas/Insite.Cart.WebApi.V1.ApiModels.CreditCardBillingAddressDto'
        alsoPurchasedProducts:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.ProductDto'
        requestedPickupDateDisplay:
          format: date-time
          type: string
        taxFailureReason:
          type: string
        failedToGetRealTimeInventory:
          type: boolean
        unassignCart:
          type: boolean
        customerVatNumber:
          type: string
        vmiLocationId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        additionalEmails:
          type: string
        defaultWarehouse:
          $ref: '#/components/schemas/Insite.Catalog.WebApi.V1.ApiModels.WarehouseModel'
        orderApprovalStatus:
          type: string
        orderApprovalStatusDisplay:
          type: string
        orderApprovalEditResult:
          type: string
        requestRevisionMessage:
          type: string
        properties:
          type: object
          additionalProperties:
            type: string
    Insite.Catalog.Services.Dtos.ProductSubscriptionDto:
      type: object
      properties:
        subscriptionAddToInitialOrder:
          type: boolean
        subscriptionAllMonths:
          type: boolean
        subscriptionApril:
          type: boolean
        subscriptionAugust:
          type: boolean
        subscriptionCyclePeriod:
          type: string
        subscriptionDecember:
          type: boolean
        subscriptionFebruary:
          type: boolean
        subscriptionFixedPrice:
          type: boolean
        subscriptionJanuary:
          type: boolean
        subscriptionJuly:
          type: boolean
        subscriptionJune:
          type: boolean
        subscriptionMarch:
          type: boolean
        subscriptionMay:
          type: boolean
        subscriptionNovember:
          type: boolean
        subscriptionOctober:
          type: boolean
        subscriptionPeriodsPerCycle:
          format: int32
          type: integer
        subscriptionSeptember:
          type: boolean
        subscriptionShipViaId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        subscriptionTotalCycles:
          format: int32
          type: integer
    Insite.Catalog.Services.Dtos.StyleTraitDto:
      type: object
      properties:
        styleTraitId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        nameDisplay:
          type: string
        unselectedValue:
          type: string
        sortOrder:
          format: int32
          type: integer
        styleValues:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.StyleValueDto'
        displayType:
          type: string
        numberOfSwatchesVisible:
          format: int32
          type: integer
        displayTextWithSwatch:
          type: boolean
    Insite.Core.Plugins.Search.Dtos.FieldScoreDetailedDto:
      type: object
      properties:
        name:
          type: string
        score:
          format: float
          type: number
        boost:
          format: float
          type: number
        matchText:
          type: string
        termFrequencyNormalized:
          format: float
          type: number
        inverseDocumentFrequency:
          format: float
          type: number
        scoreUsed:
          type: boolean
    Insite.Customers.WebApi.V1.ApiModels.ShipToModel:
      type: object
      properties:
        uri:
          type: string
        isNew:
          type: boolean
        oneTimeAddress:
          type: boolean
        label:
          type: string
        validation:
          $ref: '#/components/schemas/Insite.Customers.Services.Dtos.CustomerValidationDto'
        isDefault:
          type: boolean
        id:
          type: string
        customerNumber:
          type: string
        customerSequence:
          type: string
        customerName:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        contactFullName:
          type: string
        companyName:
          type: string
        attention:
          type: string
        address1:
          type: string
        address2:
          type: string
        address3:
          type: string
        address4:
          type: string
        city:
          type: string
        postalCode:
          type: string
        state:
          $ref: '#/components/schemas/Insite.Websites.WebApi.V1.ApiModels.StateModel'
        country:
          $ref: '#/components/schemas/Insite.Websites.WebApi.V1.ApiModels.CountryModel'
        phone:
          type: string
        fullAddress:
          type: string
        email:
          type: string
        fax:
          type: string
        isVmiLocation:
          type: boolean
        properties:
          type: object
          additionalProperties:
            type: string
    Insite.Catalog.Services.Dtos.LegacyConfigurationDto:
      type: object
      properties:
        sections:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Catalog.Services.Dtos.ConfigSectionDto'
        hasDefaults:
          type: boolean
        isKit:
          type: boolean
    Insite.Cart.Services.Dtos.CustomerOrderTaxDto:
      type: object
      properties:
        taxCode:
          type: string
        taxDescription:
          type: string
        taxRate:
          format: decimal
          type: number
        taxAmount:
          format: decimal
          type: number
        taxAmountDisplay:
          type: string
        sortOrder:
          format: int32
          type: integer
    Insite.Cart.Services.Dtos.ShipViaDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        description:
          type: string
        isDefault:
          type: boolean
    Insite.Catalog.Services.Dtos.DocumentDto:
      type: object
      properties:
        id:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        description:
          type: string
        createdOn:
          format: date-time
          type: string
        filePath:
          type: string
        fileUrl:
          type: string
        documentType:
          type: string
        languageId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        fileTypeString:
          type: string
    Insite.Cart.Services.Dtos.CostCodeDto:
      type: object
      properties:
        costCode:
          type: string
        description:
          type: string
    Insite.Core.Plugins.Pricing.ProductPriceDto:
      type: object
      properties:
        productId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        isOnSale:
          type: boolean
        requiresRealTimePrice:
          type: boolean
        additionalResults:
          type: object
          additionalProperties:
            type: string
        unitCost:
          format: decimal
          type: number
        unitCostDisplay:
          type: string
        unitListPrice:
          format: decimal
          type: number
        unitListPriceDisplay:
          type: string
        extendedUnitListPrice:
          format: decimal
          type: number
        extendedUnitListPriceDisplay:
          type: string
        unitRegularPrice:
          format: decimal
          type: number
        unitRegularPriceDisplay:
          type: string
        extendedUnitRegularPrice:
          format: decimal
          type: number
        extendedUnitRegularPriceDisplay:
          type: string
        unitNetPrice:
          format: decimal
          type: number
        unitNetPriceDisplay:
          type: string
        extendedUnitNetPrice:
          format: decimal
          type: number
        extendedUnitNetPriceDisplay:
          type: string
        unitOfMeasure:
          type: string
        vatRate:
          format: decimal
          type: number
        vatAmount:
          format: decimal
          type: number
        vatAmountDisplay:
          type: string
        unitListBreakPrices:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.BreakPriceDto'
        unitRegularBreakPrices:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.BreakPriceDto'
        regularPrice:
          format: decimal
          type: number
          readOnly: true
        regularPriceDisplay:
          type: string
          readOnly: true
        extendedRegularPrice:
          format: decimal
          type: number
          readOnly: true
        extendedRegularPriceDisplay:
          type: string
          readOnly: true
        actualPrice:
          format: decimal
          type: number
          readOnly: true
        actualPriceDisplay:
          type: string
          readOnly: true
        extendedActualPrice:
          format: decimal
          type: number
          readOnly: true
        extendedActualPriceDisplay:
          type: string
          readOnly: true
        regularBreakPrices:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.BreakPriceDto'
          readOnly: true
        actualBreakPrices:
          type: array
          items:
            $ref: '#/components/schemas/Insite.Core.Plugins.Pricing.BreakPriceDto'
          readOnly: true
        unitListPriceWithVat:
          format: decimal
          type: number
        unitListPriceWithVatDisplay:
          type: string
        extendedUnitListPriceWithVat:
          format: decimal
          type: number
        extendedUnitListPriceWithVatDisplay:
          type: string
        unitRegularPriceWithVat:
          format: decimal
          type: number
        unitRegularPriceWithVatDisplay:
          type: string
        extendedUnitRegularPriceWithVat:
          format: decimal
          type: number
        extendedUnitRegularPriceWithVatDisplay:
          type: string
        vatMinusExtendedUnitRegularPrice:
          format: decimal
          type: number
    Insite.Catalog.Services.Dtos.StyledProductDto:
      type: object
      properties:
        productId:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        name:
          type: string
        shortDescription:
          type: string
        erpNumber:
          type: string
        customerName:
          type: string
        mediumImagePath:
          type: string
        smallImagePath:
          type: string
 

# --- truncated at 32 KB (56 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/optimizely/refs/heads/main/openapi/optimizely-orderapprovals-api-openapi.yml