Conga Contract Request API

The Contract Request API from Conga — 7 operation(s) for contract request.

Business capability
Contract Management BC-150.10

Operations 11

POST /api/clm/v1/requests Create a contract request
POST /api/clm/v1/requests/incoming-requests Get incoming contract requests
POST /api/clm/v1/requests/query Get contract request records
POST /api/clm/v1/requests/{contractRequestId}/convert Convert a contract request to an agreement
DELETE /api/clm/v1/requests/{id} Delete a contract request
GET /api/clm/v1/requests/{id} Get the contract request details
PUT /api/clm/v1/requests/{id} Update a contract request record
GET /api/clm/v1/requests/{id}/action-eligibility Get a user's contract request authority
DELETE /api/clm/v1/requests/{id}/documents Delete documents by contract request ID
GET /api/clm/v1/requests/{id}/documents Get a contract request's related documents metadata
POST /api/clm/v1/requests/{id}/documents Upload documents to a contract request

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-contract-request-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-contract-request-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Contracts Contract Request API
  version: v1
servers:
- url: https://rls.congacloud.com
- url: https://preview-rls09.congacloud.com
security:
- bearerAuth: []
tags:
- name: Contract Request
paths:
  /api/clm/v1/requests:
    post:
      tags:
      - Contract Request
      summary: Create a contract request
      description: "Creates a contract request record in CLM. \n\nThe required fields to create a contract request record are: \n* Name \n* RecordType"
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
            example:
              Name: ContractRequest
              RecordType: MSA
              Requester: null
              Description: ''
              Account:
                Id: fa0d532c-2ce1-4599-873c-0af8079b4f43
                Name: Account
              Supplier: null
              ContractCategory: Sales
              Paper: null
      responses:
        '200':
          description: Returns the details of the created contract request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractRequestResponseAPIResponse'
              example:
                Success: true
                Data:
                  RequestHeader:
                    Description: Sales Contract
                    RecordType: MSA
                    Status: InProgress
                    Requester:
                      Id: 7760e695-b573-4114-9b8b-107118935020
                      Name: User1
                    Id: 61da4018-2b9e-4283-8ba6-486955717823
                    Name: Sales Contract
                    CreatedBy:
                      Id: 21ff6901-c3c6-47d9-a20e-d2ab09b484d0
                      Name: User1
                    CreatedDate: '2026-08-14T00:01:42.6793544+00:00'
                    ModifiedBy:
                      Id: 811ff868-22c7-4637-8e6a-7b627da20dfc
                      Name: User1
                    ModifiedDate: '2026-08-14T00:01:42.6793633+00:00'
                    ExternalId: null
                    ETag: null
                  RequestDetails:
                    Name: Contract-Demo
                    Account:
                      Id: 0474fc7a-5914-4059-a412-e88afb581b7a
                      Name: Conga
                    RecordType: MSA
                    ContractCategory: Sales
                    TotalContractValue: 2000
                    ContractStartDate: '2023-01-01T00:00:00'
                    ContractEndDate: '2023-12-31T00:00:00'
                    RecordOwner:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: Bumble Bee
                      OwnerType: User
                    Status: Request
                    StatusCategory: Request
                    Id: 0c4dadb2-a7ee-4672-bfa3-3c9ee2ac85d1
                    CreatedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    CreatedDate: '2026-08-14T00:01:42.6793684Z'
                    ModifiedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    ModifiedDate: '2026-08-14T00:01:42.6793686Z'
                    ContractRequest:
                      Id: efdf505c-7299-4f07-85af-465b9e470d01
                      Name: user
                    ExternalId: null
                    ActivatedBy: null
                    ActivatedDate: null
                    ContractNumber: '42'
                    AmendmentEffectiveDate: null
                    AutoRenewConsent: null
                    AutoRenewTermMonths: null
                    AutoRenewalTerms: null
                    AutoRenewal: null
                    ContractNumberAuto: 42
                    Description: null
                    InitiationType: null
                    InternalRenewalNotificationDays: null
                    InternalRenewalStartDate: null
                    ParentContract: null
                    Perpetual: null
                    PrimaryContact: null
                    RemainingContractedDays: null
                    RenewalNoticeDate: null
                    RenewalNoticeDays: null
                    RetentionDate: null
                    RetentionPolicyId: null
                    Source: null
                    SpecialTerms: null
                    SubmitRequestMode: null
                    TerminationComments: null
                    TerminationDate: null
                    TerminationNoticeDays: null
                    TerminationNoticeIssueDate: null
                    ExecutedDate: null
                    Currency: USD
                    ContractDurationDays: null
                    ContractedDays: null
                Warnings: null
                Errors: null
        '400':
          description: A required value is missing from the request body.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/incoming-requests:
    post:
      tags:
      - Contract Request
      summary: Get incoming contract requests
      description: 'Retrieves contract requests that are pending approval and assigned to the current user or their groups.

        Supports filtering, sorting, and pagination through the CustomQuery parameter.'
      requestBody:
        description: Optional query parameters for filtering, sorting, and pagination
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomQuery'
            example:
              Distinct: false
              Fields: null
              GroupBy: null
              IncludeTotalCount: true
              SortInfo:
                FieldName: ContractType
                Direction: Ascending
              CriteriaExpression: null
              Limit: 10
              Skip: 0
      responses:
        '200':
          description: Returns the incoming contract requests assigned to the current user or their groups.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StringObjectDictionaryQueryResponseAPIResponse'
              example:
                Success: true
                Data:
                  RecordCount: 1
                  Data:
                  - Id: 0c4dadb2-a7ee-4672-bfa3-3c9ee2ac85d1
                    Name: Reviewer
                    Description: Team is responsible to review the associated contract
                    Action:
                    - SendforReview
                    IsActive: true
                    CreatedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    CreatedDate: '2026-08-14T00:01:42.7609129Z'
                    ModifiedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    ModifiedDate: '2026-08-14T00:01:42.7609133Z'
                    ExternalId: null
                  NextCursor: null
                  StatusCode: OK
                Warnings: null
                Errors: null
        '400':
          description: The query is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/query:
    post:
      tags:
      - Contract Request
      summary: Get contract request records
      description: Executes the query request against the contract request records and returns the matching records.
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CustomQuery'
            example:
              Distinct: false
              Fields: null
              GroupBy: null
              IncludeTotalCount: true
              SortInfo:
                FieldName: ContractType
                Direction: Ascending
              CriteriaExpression: null
              Limit: 10
              Skip: 0
      responses:
        '200':
          description: Returns the contract requests that match the provided query.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractRequestQueryResponseQueryResponseAPIResponse'
        '400':
          description: The query is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/{contractRequestId}/convert:
    post:
      tags:
      - Contract Request
      summary: Convert a contract request to an agreement
      description: 'Converts a contract request into an agreement in CLM.

        Optionally processes DAI (Document AI) on copied documents when useDai is true and worksheetId is provided.'
      parameters:
      - name: contractRequestId
        in: path
        description: ID of the contract request to be converted (route parameter).
        required: true
        schema:
          type: string
      - name: useDai
        in: query
        description: Optional query parameter indicating whether to process DAI on the copied documents.
        schema:
          type: boolean
      - name: worksheetId
        in: query
        description: Optional query parameter specifying the worksheet to use for DAI processing when useDai is true.
        schema:
          type: string
      responses:
        '200':
          description: Returns the details of the created agreement.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConvertToContractResponseAPIResponse'
        '400':
          description: The provided contract request ID is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/{id}:
    delete:
      tags:
      - Contract Request
      summary: Delete a contract request
      description: Deletes the contract request permanently from the system for the provided contract ID.
      parameters:
      - name: id
        in: path
        description: ID of the contract request to be deleted
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns confirmation that the contract request is deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BooleanAPIResponse'
              example:
                Success: true
                Data: true
                Warnings: null
                Errors: null
        '400':
          description: The provided contract request ID is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
    get:
      tags:
      - Contract Request
      summary: Get the contract request details
      description: Fetches the contract request details for the provided contract request ID
      parameters:
      - name: id
        in: path
        description: ID of the contract request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the contract request details for the provided contract request ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractRequestResponseAPIResponse'
              example:
                Success: true
                Data:
                  RequestHeader:
                    Description: Sales Contract
                    RecordType: MSA
                    Status: InProgress
                    Requester:
                      Id: 12b774ff-ea07-42f6-8ea4-3395612694fc
                      Name: User1
                    Id: 7676dbf6-1e6d-4304-a755-3e554490e503
                    Name: Sales Contract
                    CreatedBy:
                      Id: e3c86329-09b0-499e-940c-34c4eab60fce
                      Name: User1
                    CreatedDate: '2026-08-14T00:01:42.6618884+00:00'
                    ModifiedBy:
                      Id: 86f34e05-9846-45b4-b947-c42268f401fe
                      Name: User1
                    ModifiedDate: '2026-08-14T00:01:42.6619149+00:00'
                    ExternalId: null
                    ETag: null
                  RequestDetails:
                    Name: Contract-Demo
                    Account:
                      Id: 0474fc7a-5914-4059-a412-e88afb581b7a
                      Name: Conga
                    RecordType: MSA
                    ContractCategory: Sales
                    TotalContractValue: 2000
                    ContractStartDate: '2023-01-01T00:00:00'
                    ContractEndDate: '2023-12-31T00:00:00'
                    RecordOwner:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: Bumble Bee
                      OwnerType: User
                    Status: Request
                    StatusCategory: Request
                    Id: 0c4dadb2-a7ee-4672-bfa3-3c9ee2ac85d1
                    CreatedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    CreatedDate: '2026-08-14T00:01:42.6619501Z'
                    ModifiedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    ModifiedDate: '2026-08-14T00:01:42.6619503Z'
                    ContractRequest:
                      Id: efdf505c-7299-4f07-85af-465b9e470d01
                      Name: user
                    ExternalId: null
                    ActivatedBy: null
                    ActivatedDate: null
                    ContractNumber: '42'
                    AmendmentEffectiveDate: null
                    AutoRenewConsent: null
                    AutoRenewTermMonths: null
                    AutoRenewalTerms: null
                    AutoRenewal: null
                    ContractNumberAuto: 42
                    Description: null
                    InitiationType: null
                    InternalRenewalNotificationDays: null
                    InternalRenewalStartDate: null
                    ParentContract: null
                    Perpetual: null
                    PrimaryContact: null
                    RemainingContractedDays: null
                    RenewalNoticeDate: null
                    RenewalNoticeDays: null
                    RetentionDate: null
                    RetentionPolicyId: null
                    Source: null
                    SpecialTerms: null
                    SubmitRequestMode: null
                    TerminationComments: null
                    TerminationDate: null
                    TerminationNoticeDays: null
                    TerminationNoticeIssueDate: null
                    ExecutedDate: null
                    Currency: USD
                    ContractDurationDays: null
                    ContractedDays: null
                Warnings: null
                Errors: null
        '400':
          description: The provided contract request ID is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
    put:
      tags:
      - Contract Request
      summary: Update a contract request record
      description: "Updates a contract request record for the provided contract ID in CLM.\n\nThe required fields to update a contract request record are: \n* Name \n* Account \n* RecordType"
      parameters:
      - name: id
        in: path
        description: ID of the contract request to be updated
        required: true
        schema:
          type: string
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              type: object
              additionalProperties: {}
            example:
              Name: ContractRequest
              RecordType: MSA
              Requester: null
              Description: ''
              Account:
                Id: fa0d532c-2ce1-4599-873c-0af8079b4f43
                Name: Account
              Supplier: null
              ContractCategory: Sales
              Paper: null
      responses:
        '200':
          description: Returns the updated contract request details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractRequestResponseAPIResponse'
              example:
                Success: true
                Data:
                  RequestHeader:
                    Description: Sales Contract
                    RecordType: MSA
                    Status: InProgress
                    Requester:
                      Id: 2deb058d-3df1-493c-add1-cea3f6cfc36a
                      Name: User1
                    Id: bf584b12-fd0c-468f-bd05-4d46d92b5f33
                    Name: Sales Contract
                    CreatedBy:
                      Id: b3664a3f-0af1-4d82-a9ad-684a0dbd5a12
                      Name: User1
                    CreatedDate: '2026-08-14T00:01:42.6713043+00:00'
                    ModifiedBy:
                      Id: c63db630-bfe7-4717-94ea-be4324b32c21
                      Name: User1
                    ModifiedDate: '2026-08-14T00:01:42.6713148+00:00'
                    ExternalId: null
                    ETag: null
                  RequestDetails:
                    Name: Contract-Demo
                    Account:
                      Id: 0474fc7a-5914-4059-a412-e88afb581b7a
                      Name: Conga
                    RecordType: MSA
                    ContractCategory: Sales
                    TotalContractValue: 2000
                    ContractStartDate: '2023-01-01T00:00:00'
                    ContractEndDate: '2023-12-31T00:00:00'
                    RecordOwner:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: Bumble Bee
                      OwnerType: User
                    Status: Request
                    StatusCategory: Request
                    Id: 0c4dadb2-a7ee-4672-bfa3-3c9ee2ac85d1
                    CreatedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    CreatedDate: '2026-08-14T00:01:42.6713205Z'
                    ModifiedBy:
                      Id: d717a075-9cbf-480c-b230-837e0e6dee75
                      Name: user
                    ModifiedDate: '2026-08-14T00:01:42.6713207Z'
                    ContractRequest:
                      Id: efdf505c-7299-4f07-85af-465b9e470d01
                      Name: user
                    ExternalId: null
                    ActivatedBy: null
                    ActivatedDate: null
                    ContractNumber: '42'
                    AmendmentEffectiveDate: null
                    AutoRenewConsent: null
                    AutoRenewTermMonths: null
                    AutoRenewalTerms: null
                    AutoRenewal: null
                    ContractNumberAuto: 42
                    Description: null
                    InitiationType: null
                    InternalRenewalNotificationDays: null
                    InternalRenewalStartDate: null
                    ParentContract: null
                    Perpetual: null
                    PrimaryContact: null
                    RemainingContractedDays: null
                    RenewalNoticeDate: null
                    RenewalNoticeDays: null
                    RetentionDate: null
                    RetentionPolicyId: null
                    Source: null
                    SpecialTerms: null
                    SubmitRequestMode: null
                    TerminationComments: null
                    TerminationDate: null
                    TerminationNoticeDays: null
                    TerminationNoticeIssueDate: null
                    ExecutedDate: null
                    Currency: USD
                    ContractDurationDays: null
                    ContractedDays: null
                Warnings: null
                Errors: null
        '400':
          description: Provided contract ID is not valid or the required values are not provided in the request body.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/{id}/action-eligibility:
    get:
      tags:
      - Contract Request
      summary: Get a user's contract request authority
      description: Checks if the current user has the permissions and role to approve, reject, or convert for a given contract, based on the user role (for example, Approver, contract Manager), association with the contract request (e.g., creator, owner, submitter), and the contract request's current status.
      parameters:
      - name: id
        in: path
        description: A 36-character UUID that uniquely identifies the contract request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the user's eligibility details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContractRequestActionEligibilityResponseAPIResponse'
        '400':
          description: Invalid contract request ID or contract request details.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
  /api/clm/v1/requests/{id}/documents:
    delete:
      tags:
      - Contract Request
      summary: Delete documents by contract request ID
      description: Deletes one or more documents associated with a specific contract request. You can provide a list of document IDs to delete specific documents, or omit the list to delete all documents linked to the contract request. The API permanently removes the document data while retaining the metadata with the "IsDeleted" flag set to true. The API returns a confirmation of the deletion status.
      parameters:
      - name: id
        in: path
        description: ID of the contract request
        required: true
        schema:
          type: string
      requestBody:
        description: IDs of the documents to be deleted
        content:
          application/json:
            schema:
              type: array
              items:
                type: string
      responses:
        '200':
          description: Returns confirmation that the documents are deleted.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BooleanAPIResponse'
              example:
                Success: true
                Data: true
                Warnings: null
                Errors: null
        '400':
          description: Provided contract request ID or document ID is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
    get:
      tags:
      - Contract Request
      summary: Get a contract request's related documents metadata
      description: Fetches all the related documents for the provided contract ID.
      parameters:
      - name: id
        in: path
        description: ID of the contract request
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the list of contract request's related documents metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DocumentWrapperListAPIResponse'
        '400':
          description: Provided contract request ID is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal server error occurred. Please contact admin.
    post:
      tags:
      - Contract Request
      summary: Upload documents to a contract request
      description: Uploads documents to a contract request record.
      parameters:
      - name: id
        in: path
        description: ID of the contract request
        required: true
        schema:
          type: string
      requestBody:
        description: File binary data
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
                documentAttributes:
                  type: object
                  additionalProperties: {}
            example:
              Name: Reviewer
              Description: Team is responsible to review the associated contract
              Action:
              - SendForReview
              IsActive: true
            encoding:
              file:
                style: form
              documentAttributes:
                style: form
      responses:
        '200':
          description: Returns confirmation that the document is uploaded to a contract request.
        '400':
          description: The contract ID, document ID, or file data is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Error Message
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseError'
              example:
                Success: false
                Data: null
                Warnings: null
                Errors:
                - Id: null
                  Message: Internal 

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