Conga Price Waterfall API

PriceWaterfall controller

Operations 5

GET /api/cart/v1/carts/{cartId}/items/{lineitemId}/waterfallchart Get price waterfall detail #
GET /api/cart/v1/carts/{cartId}/items/{lineitemId}/waterfallchart/{chartId} Get price waterfall detail by chart ID #
GET /api/cart/v1/carts/{cartId}/summarygroups/{summarygroupId}/waterfallchart Get summary group associated price waterfall detail #
GET /api/cart/v1/carts/{cartId}/summarygroups/{summarygroupId}/waterfallchart/{chartId} Get summary group associated price waterfall detail by chart ID #
GET /api/cart/v1/carts/{cartId}/waterfallchart Get batch price waterfall details for all line Items #

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-pricewaterfall-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

conga-pricewaterfall-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cart - V1 Price Waterfall API
  version: v1
  description: PriceWaterfall controller
servers:
- url: https://rls.congacloud.com
security:
- Bearer: []
tags:
- name: PriceWaterfall
  description: PriceWaterfall controller
paths:
  /api/cart/v1/carts/{cartId}/items/{lineitemId}/waterfallchart:
    get:
      tags:
      - PriceWaterfall
      summary: Get price waterfall detail
      description: Retrieves the price waterfall detail based on the given cart's line item ID.
      parameters:
      - name: cartId
        in: path
        description: The cart identifier
        required: true
        schema:
          type: string
      - name: lineitemId
        in: path
        description: The line item ID
        required: true
        schema:
          type: string
      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
      operationId: getApiCartV1CartsByCartIdItemsByLineitemIdWaterfallchart
      x-operation-id-source: derived
  /api/cart/v1/carts/{cartId}/items/{lineitemId}/waterfallchart/{chartId}:
    get:
      tags:
      - PriceWaterfall
      summary: Get price waterfall detail by chart ID
      description: Retrieves the price waterfall detail based on the given cart's line item ID and chart ID.
      parameters:
      - name: cartId
        in: path
        description: The cart identifier
        required: true
        schema:
          type: string
      - name: lineitemId
        in: path
        description: The line item identifier
        required: true
        schema:
          type: string
      - name: chartId
        in: path
        description: The chart identifier
        required: true
        schema:
          type: string
      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
      operationId: getApiCartV1CartsByCartIdItemsByLineitemIdWaterfallchartByChartId
      x-operation-id-source: derived
  /api/cart/v1/carts/{cartId}/summarygroups/{summarygroupId}/waterfallchart:
    get:
      tags:
      - PriceWaterfall
      summary: Get summary group associated price waterfall detail
      description: Retrieves the summary group of price waterfall chart details based on the given cart's ID and summary group ID.
      parameters:
      - name: cartId
        in: path
        description: The cart identifier
        required: true
        schema:
          type: string
      - name: summarygroupId
        in: path
        required: true
        schema:
          type: string
      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
      operationId: getApiCartV1CartsByCartIdSummarygroupsBySummarygroupIdWaterfallchart
      x-operation-id-source: derived
  /api/cart/v1/carts/{cartId}/summarygroups/{summarygroupId}/waterfallchart/{chartId}:
    get:
      tags:
      - PriceWaterfall
      summary: Get summary group associated price waterfall detail by chart ID
      description: Retrieves the summary group of price waterfall chart details based on the given cart's ID, summary group ID and waterfall chart ID.
      parameters:
      - name: cartId
        in: path
        description: The cart identifier
        required: true
        schema:
          type: string
      - name: summarygroupId
        in: path
        description: The Summary Group ID
        required: true
        schema:
          type: string
      - name: chartId
        in: path
        description: Waterfall Chart ID
        required: true
        schema:
          type: string
      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
      operationId: getApiCartV1CartsByCartIdSummarygroupsBySummarygroupIdWaterfallchartByChartId
      x-operation-id-source: derived
  /api/cart/v1/carts/{cartId}/waterfallchart:
    get:
      tags:
      - PriceWaterfall
      summary: Get batch price waterfall details for all line Items
      description: Retrieves the price waterfall detail based on the all line item.
      parameters:
      - name: cartId
        in: path
        description: The cart identifier
        required: true
        schema:
          type: string
      - name: chartIds
        in: query
        description: Specify the chart ids to be returned in the response
        schema:
          type: array
          items:
            type: string
      - name: primaryLineNumbers
        in: query
        description: Specify the primary line numbers to be returned in the response.
        schema:
          type: array
          items:
            type: integer
            format: int32
      - name: pageNumber
        in: query
        description: Enter the page number of the line. For example, if there are 500 lines in the cart and page size is 25, then a page number can vary from 1 to 20.
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: Enter the number of objects to be retrieved.
        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
      operationId: getApiCartV1CartsByCartIdWaterfallchart
      x-operation-id-source: derived
components:
  schemas:
    Microsoft.AspNetCore.Mvc.ProblemDetails:
      type: object
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
      additionalProperties: {}
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header