Conga Adjustments API

Adjustments controller

Operations 8

DELETE /api/cart/v1/carts/{cartId}/adjustments Delete cart adjustments
GET /api/cart/v1/carts/{cartId}/adjustments Get cart adjustments
PATCH /api/cart/v1/carts/{cartId}/adjustments Update adjustments by cart
POST /api/cart/v1/carts/{cartId}/adjustments Create adjustments
DELETE /api/cart/v1/carts/{cartId}/adjustments/{adjustmentId} Delete an adjustment by identifier
GET /api/cart/v1/carts/{cartId}/adjustments/{adjustmentId} Get cart adjustment details
PATCH /api/cart/v1/carts/{cartId}/adjustments/{adjustmentId} Update adjustments by identifier
DELETE /api/cart/v1/carts/{cartId}/items/{lineItemId}/adjustments Delete adjustments for a line item

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/conga-adjustments-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

conga-adjustments-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cart - V1 Adjustments API
  version: v1
  description: Adjustments controller
servers:
- url: https://rls.congacloud.com
security:
- Bearer: []
tags:
- name: Adjustments
  description: Adjustments controller
paths:
  /api/cart/v1/carts/{cartId}/adjustments:
    delete:
      tags:
      - Adjustments
      summary: Delete cart adjustments
      description: 'Deletes one or more adjustments in a cart based on the cart ID in the

        endpoint request and the cart ID and adjustment IDs provided in the parameters.'
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      requestBody:
        description: The ID(s) of adjustment
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
          text/json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
          application/*+json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '204':
          description: No Content
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
    get:
      tags:
      - Adjustments
      summary: Get cart adjustments
      description: Retrieves the adjustments for the cart (by cart ID).
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      - name: filter
        in: query
        description: Filter
        schema:
          type: array
          items:
            type: string
      - name: pageNumber
        in: query
        description: Page number
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: Page size
        schema:
          type: integer
          format: int32
          default: 50
      responses:
        '200':
          description: OK
        '204':
          description: No Content
        '422':
          description: Unprocessable Content
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '500':
          description: Internal Server Error
    patch:
      tags:
      - Adjustments
      summary: Update adjustments by cart
      description: Updates one or more adjustment records for the given cartId.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      requestBody:
        description: The adjustment line items
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
              Id: 1a99d836-641b-42db-ac78-c30f7737ef8a
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Id: 56689db9-11d8-4788-92e6-837cefce3815
              Name: Waterfall Manual Adj1
            - LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              UnitAdjustment: 500
              Id: ced7eab6-fc69-4031-a372-861c74b4a9d7
              Name: AdjustmentOverride
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
              Id: 1a99d836-641b-42db-ac78-c30f7737ef8a
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Id: 56689db9-11d8-4788-92e6-837cefce3815
              Name: Waterfall Manual Adj1
            - LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              UnitAdjustment: 500
              Id: ced7eab6-fc69-4031-a372-861c74b4a9d7
              Name: AdjustmentOverride
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
              Id: 1a99d836-641b-42db-ac78-c30f7737ef8a
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Id: 56689db9-11d8-4788-92e6-837cefce3815
              Name: Waterfall Manual Adj1
            - LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              UnitAdjustment: 500
              Id: ced7eab6-fc69-4031-a372-861c74b4a9d7
              Name: AdjustmentOverride
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '500':
          description: Internal Server Error
    post:
      tags:
      - Adjustments
      summary: Create adjustments
      description: Creates one or more adjustments.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      requestBody:
        description: The adjustment line items
        content:
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: '% Discount'
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
            - AdjustmentType: Markup Amount
              AdjustmentAmount: 100
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Name: Waterfall Manual Adj1
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: '% Discount'
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
            - AdjustmentType: Markup Amount
              AdjustmentAmount: 100
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Name: Waterfall Manual Adj1
          application/*+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
            example:
            - AdjustmentType: '% Discount'
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
            - AdjustmentType: Discount Amount
              AdjustmentAmount: 15
              AdjustmentAppliesTo: Starting Price
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 1
              LineType: Manual
              Type: Default
            - AdjustmentType: Markup Amount
              AdjustmentAmount: 100
              AdjustmentAppliesTo: Previous
              LineItem:
                Id: 9f8edd3f-0696-411d-b532-dc560f1e1ebd
              LineNumber: 0
              PricePoint: Net Price
              Name: Waterfall Manual Adj1
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '500':
          description: Internal Server Error
  /api/cart/v1/carts/{cartId}/adjustments/{adjustmentId}:
    delete:
      tags:
      - Adjustments
      summary: Delete an adjustment by identifier
      description: Deletes the adjustment record.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      - name: adjustmentId
        in: path
        description: The ID of adjustment
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
    get:
      tags:
      - Adjustments
      summary: Get cart adjustment details
      description: Retrieves details of a cart's adjustments by adjustment ID.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      - name: adjustmentId
        in: path
        description: The adjustment identifier
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
    patch:
      tags:
      - Adjustments
      summary: Update adjustments by identifier
      description: Update the adjustment fields for the cart and adjustment IDs given in the parameters.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      - name: adjustmentId
        in: path
        description: The ID of adjustment
        required: true
        schema:
          type: string
      requestBody:
        description: The adjustment line item
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
          text/json:
            schema:
              $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Conga.Revenue.Entities.AdjustmentLineItem'
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '500':
          description: Internal Server Error
  /api/cart/v1/carts/{cartId}/items/{lineItemId}/adjustments:
    delete:
      tags:
      - Adjustments
      summary: Delete adjustments for a line item
      description: Deletes adjustments for a specific line item.
      parameters:
      - name: cartId
        in: path
        description: The cart's unique identifier
        required: true
        schema:
          type: string
      - name: lineItemId
        in: path
        description: lineItemId
        required: true
        schema:
          type: string
      requestBody:
        description: An adjustment's unique identifier
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
          text/json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
          application/*+json:
            schema:
              type: array
              items:
                type: string
            example:
            - adjustment-1
            - adjustment-2
      responses:
        '200':
          description: OK
        '202':
          description: Accepted
        '204':
          description: No Content
        '403':
          description: Forbidden
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
        '404':
          description: Not Found
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            application/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
            text/json:
              schema:
                $ref: '#/components/schemas/Microsoft.AspNetCore.Mvc.ProblemDetails'
components:
  schemas:
    Conga.Revenue.Entities.PriceMatrixEntry:
      type: object
      properties:
        sequence:
          type:
          - number
          - 'null'
          format: double
        adjustmentType:
          type:
          - string
          - 'null'
        adjustmentAmount:
          type:
          - number
          - 'null'
          format: double
        adjustmentAmountSourceId:
          type:
          - string
          - 'null'
        condition:
          type:
          - string
          - 'null'
        dimension1Value:
          type:
          - string
          - 'null'
        dimension2Value:
          type:
          - string
          - 'null'
        dimension3Value:
          type:
          - string
          - 'null'
        dimension4Value:
          type:
          - string
          - 'null'
        dimension5Value:
          type:
          - string
          - 'null'
        dimension6Value:
          type:
          - string
          - 'null'
        matrix:
          $ref: '#/components/schemas/Conga.Revenue.Entities.PriceMatrix'
        matrixId:
          type:
          - string
          - 'null'
        priceOverride:
          type:
          - number
          - 'null'
          format: double
        flatPrice:
          type:
          - number
          - 'null'
          format: double
        isIncluded:
          type: boolean
        tierEndValue:
          type:
          - number
          - 'null'
          format: double
        tierStartValue:
          type:
          - number
          - 'null'
          format: double
        usageRate:
          type:
          - number
          - 'null'
          format: double
        periodStartDate:
          type:
          - string
          - 'null'
          format: date-time
        periodEndDate:
          type:
          - string
          - 'null'
          format: date-time
        adjustmentSource:
          type:
          - string
          - 'null'
        CreatedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        CreatedDate:
          type:
          - string
          - 'null'
          format: date-time
        Id:
          type:
          - string
          - 'null'
        ModifiedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        ModifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        name:
          type:
          - string
          - 'null'
        Currency:
          type:
          - string
          - 'null'
        Digest:
          type:
          - string
          - 'null'
      additionalProperties: {}
    Conga.Revenue.Entities.PriceList:
      type: object
      properties:
        accountId:
          type:
          - string
          - 'null'
        basedOnAdjustmentAmount:
          type:
          - number
          - 'null'
          format: double
        basedOnAdjustmentType:
          type:
          - string
          - 'null'
        basedOnPriceList:
          type:
          - string
          - 'null'
        basedOnPriceListId:
          type:
          - string
          - 'null'
        contractNumber:
          type:
          - string
          - 'null'
        costModel:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        disableCurrencyAdjustment:
          type: boolean
        isActive:
          type: boolean
        effectiveDate:
          type:
          - string
          - 'null'
          format: date-time
        expirationDate:
          type:
          - string
          - 'null'
          format: date-time
        type:
          type:
          - string
          - 'null'
        CreatedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        CreatedDate:
          type:
          - string
          - 'null'
          format: date-time
        Id:
          type:
          - string
          - 'null'
        ModifiedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        ModifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        name:
          type:
          - string
          - 'null'
        Currency:
          type:
          - string
          - 'null'
        Digest:
          type:
          - string
          - 'null'
      additionalProperties: {}
    Conga.Revenue.Entities.ProductFeature:
      type: object
      properties:
        featureSetId:
          type:
          - string
          - 'null'
        includedFeatures:
          type:
          - string
          - 'null'
        productId:
          type:
          - string
          - 'null'
        sequence:
          type:
          - integer
          - 'null'
          format: int32
        FeatureSet:
          $ref: '#/components/schemas/Conga.Revenue.Entities.FeatureSet'
        CreatedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        CreatedDate:
          type:
          - string
          - 'null'
          format: date-time
        Id:
          type:
          - string
          - 'null'
        ModifiedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        ModifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        name:
          type:
          - string
          - 'null'
        Currency:
          type:
          - string
          - 'null'
        Digest:
          type:
          - string
          - 'null'
      additionalProperties: {}
    Conga.Revenue.Entities.ProductOptionGroup:
      type: object
      properties:
        contentType:
          type:
          - string
          - 'null'
        detailPage:
          type:
          - string
          - 'null'
        isHidden:
          type:
          - boolean
          - 'null'
        isGlobal:
          type:
          - boolean
          - 'null'
        isLeaf:
          type:
          - boolean
          - 'null'
        isModifiable:
          type:
          - boolean
          - 'null'
        isPicklist:
          type:
          - boolean
          - 'null'
        level:
          type:
          - integer
          - 'null'
          format: int32
        maxOptions:
          type:
          - number
          - 'null'
          format: double
        maxTotalQuantityExpression:
          type:
          - string
          - 'null'
        maxTotalQuantity:
          type:
          - number
          - 'null'
          format: double
        minOptions:
          type:
          - number
          - 'null'
          format: double
        minTotalQuantityExpression:
          type:
          - string
          - 'null'
        minTotalQuantity:
          type:
          - number
          - 'null'
          format: double
        modifiableType:
          type:
          - string
          - 'null'
        optionGroupId:
          type:
          - string
          - 'null'
        parentOptionGroupId:
          type:
          - string
          - 'null'
        productAttributeGroupId:
          type:
          - string
          - 'null'
        productId:
          type:
          - string
          - 'null'
        rootOptionGroupId:
          type:
          - string
          - 'null'
        rootSequence:
          type:
          - number
          - 'null'
          format: double
        sequence:
          type:
          - integer
          - 'null'
          format: int32
        type:
          type:
          - string
          - 'null'
        ProductOptions:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Conga.Revenue.Entities.ProductOptionComponent'
        Product:
          $ref: '#/components/schemas/Conga.Revenue.Entities.Product'
        ParentOptionGroup:
          $ref: '#/components/schemas/Conga.Revenue.Entities.OptionGroup'
        ProductAttributeGroupMemberIdReference:
          $ref: '#/components/schemas/Conga.Revenue.Entities.ProductAttributeGroupMember'
        RootOptionGroup:
          $ref: '#/components/schemas/Conga.Revenue.Entities.OptionGroup'
        OptionGroup:
          $ref: '#/components/schemas/Conga.Revenue.Entities.OptionGroup'
        CreatedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        CreatedDate:
          type:
          - string
          - 'null'
          format: date-time
        Id:
          type:
          - string
          - 'null'
        ModifiedBy:
          $ref: '#/components/schemas/Conga.Revenue.Entities.BaseEntity'
        ModifiedDate:
          type:
          - string
          - 'null'
          format: date-time
        name:
          type:
          - string
          - 'null'
        Currency:
          type:
          - string
          - 'null'
        Digest:
          type:
          - string
          - 'null'
      additionalProperties: {}
    Conga.Revenue.Entities.Incentive:
      type: object
      properties:
        accountScope:
          type:
          - array
          - 'null'
          items:
            type: string
        accountScopeOper:
          type:
          - string
          - 'null'
        accountTypeScope:
          type:
          - array
          - 'null'
          items:
            type: string
        accountTypeScopeOper:
          type:
          - string
          - 'null'
        isActive:
          type: boolean
        amendmentEffectiveDate:
          type:
          - string
          - 'null'
          format: date-time
        ancestorId:
          type:
          - string
          - 'null'
        applicationMethod:
          type:
          - string
          - 'null'
        autoApply:
          type: boolean
        benefitUom:
          type:
          - string
          - 'null'
        cascadeBenefitsForBundles:
          type:
          - boolean
          - 'null'
        combineWithOtherIncentives:
          type: boolean
        contextType:
          type:
          - string
          - 'null'
        countryScope:
          type:
          - array
          - 'null'
          items:
            type: string
        countryScopeOper:
          type:
          - string
          - 'null'
        cycleEndDate:
          type:
          - string
          - 'null'
          format: date-time
        cycleStartDate:
          type:
          - string
          - 'null'
          format: date-time
        description:
          type:
          - string
          - 'null'
        downgrade:
          type:
          - string
          - 'null'
        effectiveDate:
          type:
          - string
          - 'null'
          format: date-time
        enableBenefitEffectivityDates:
          type: boolean
        excludeChildrenWithActivePrograms:
          type: boolean
        expirationDate:
          type:
          - string
          - 'null'
          format: date-time
        incentiveCode:
          type:
          - string
          - 'null'
        incentiveGroupId:
          type:
          - string
          - 'null'
        incentiveNumber:
          type:
          - string
          - 'null'
        incentiveNumberAuto:
          type:
          - string
          - 'null'
        incentiveNumberText:
          type:
          - string
          - 'null'
        incentiveProgramId:
          type:
          - string
          - 'null'
        includeOrdersForAccountHierarchy:
          type: boolean
        isBundle:
          type: boolean
        loyaltyId:
          type:
          - string
          - 'null'
        maxPoints:
          type:
          - number
          - 'null'
          format: double
        originalEffectiveDate:
          type:
          - string
          - 'null'
          format: date-time
        pointAccrualLevel:
          type:
          - string
          - 'null'
        priceListScope:
          type:
          - array
          - 'null'
          items:
            type: string
        priceListScopeOper:
          type:
          - string
          - 'null'
        productFamilyScope:
          type:
          - array
          - 'null'
          items:
            type: string
        productFamilyScopeOper:
          type:
          - string
          - 'null'
        productGroupScope:
          type:
          - array
          - 'null'
          items:
            type: strin

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