Conga In-Effect View API

The In-Effect View API from Conga — 3 operation(s) for in-effect view.

Business capability
Contract Management BC-150.10

Operations 3

GET /api/clm/v1/contracts/{contractId}/in-effect-view/clauses Get in-effect view of contract clause changes
GET /api/clm/v1/contracts/{contractId}/in-effect-view/details Get in-effect view of contract detail changes
GET /api/clm/v1/contracts/{contractId}/in-effect-view/documents Get in-effect view of contract document changes

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-in-effect-view-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-in-effect-view-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Contracts In-Effect View API
  version: v1
servers:
- url: https://rls.congacloud.com
- url: https://preview-rls09.congacloud.com
security:
- bearerAuth: []
tags:
- name: In-Effect View
paths:
  /api/clm/v1/contracts/{contractId}/in-effect-view/clauses:
    get:
      tags:
      - In-Effect View
      summary: Get in-effect view of contract clause changes
      description: Fetches contract clause changes that occurred during an amendment, enabling a comparison of the amendment's change history.
      parameters:
      - name: contractId
        in: path
        description: ID of the contract
        required: true
        schema:
          type: string
      - name: skip
        in: query
        description: Number of records to skip (optional, requires feature flag)
        schema:
          type: integer
          format: int32
      - name: limit
        in: query
        description: Number of records to return (optional, requires feature flag)
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Returns contract clause changes during amendment
        '400':
          description: Contract ID is invalid.
  /api/clm/v1/contracts/{contractId}/in-effect-view/details:
    get:
      tags:
      - In-Effect View
      summary: Get in-effect view of contract detail changes
      description: Fetches contract detail changes that occurred during an amendment, enabling a comparison of the amendment's change history.
      parameters:
      - name: contractId
        in: path
        description: ID of the contract
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns contract detail changes during amendment
        '400':
          description: Contract ID is invalid.
  /api/clm/v1/contracts/{contractId}/in-effect-view/documents:
    get:
      tags:
      - In-Effect View
      summary: Get in-effect view of contract document changes
      description: Fetches contract document changes that occurred during an amendment, enabling a comparison of the amendment's change history.
      parameters:
      - name: contractId
        in: path
        description: ID of the contract
        required: true
        schema:
          type: string
      - name: skip
        in: query
        description: Number of records to skip (optional, requires feature flag)
        schema:
          type: integer
          format: int32
      - name: limit
        in: query
        description: Number of records to return (optional, requires feature flag)
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Returns contract document changes during amendment
        '400':
          description: Contract ID is invalid.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT