Conga Agreement Offline API

This class contains APIs related to offline agreements.

Operations 5

POST /api/xauthor/v1/contracts/documents/create-offline Create an offline agreement #
POST /api/xauthor/v1/contracts/documents/create-offline-multipart Create offline Agreement #
POST /api/xauthor/v1/contracts/documents/store-executed-multipart Create store executed agreement #
POST /api/xauthor/v1/contracts/{contractId}/documents/import-offline Import an offline agreement #
POST /api/xauthor/v1/contracts/{contractId}/documents/import-offline-multipart Import an offline agreement #

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-agreementoffline-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-agreementoffline-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: X-Author Agreement Offline API
  version: v1
  description: This class contains APIs related to offline agreements.
servers:
- url: https://xauthor-prod-rls10.congacloud.com
- url: https://xauthor-preview-rls09.congacloud.com
security:
- bearerAuth: []
tags:
- name: AgreementOffline
  description: This class contains APIs related to offline agreements.
paths:
  /api/xauthor/v1/contracts/documents/create-offline:
    post:
      tags:
      - AgreementOffline
      summary: Create an offline agreement
      description: Creates a new contract document and affixes it to a new contract record. Pass the agreement information in the request body to attach a document to an agreement. Fields passed in the request body include Record Type, Account Name, and Contact ID.
      parameters:
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        description: Create offline agreement request body
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.CreateOfflineRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.CreateOfflineRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.CreateOfflineRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.CreateOfflineRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Server Error
      operationId: postApiXauthorV1ContractsDocumentsCreateOffline
      x-operation-id-source: derived
  /api/xauthor/v1/contracts/documents/create-offline-multipart:
    post:
      tags:
      - AgreementOffline
      summary: Create offline Agreement
      description: Creates a new contract document and affixes it into a new contract record. Pass the Agreement information in the request body to attach a document to an agreement. Fields passed in the request body include Record Type, Account Name, and Contact ID.
      parameters:
      - name: ContractAttributes
        in: query
        schema:
          type:
          - object
          - 'null'
          additionalProperties: {}
      - name: DocumentCustomProperties
        in: query
        schema:
          type:
          - object
          - 'null'
          additionalProperties: {}
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                documentFile:
                  type:
                  - string
                  - 'null'
                  description: Document to be created as offline Agreement
                  format: binary
                DocumentMetadata.Tags:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                DocumentMetadata.Description:
                  type:
                  - string
                  - 'null'
            encoding:
              documentFile:
                style: form
              DocumentMetadata.Tags:
                style: form
              DocumentMetadata.Description:
                style: form
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Server Error
      operationId: postApiXauthorV1ContractsDocumentsCreateOfflineMultipart
      x-operation-id-source: derived
  /api/xauthor/v1/contracts/documents/store-executed-multipart:
    post:
      tags:
      - AgreementOffline
      summary: Create store executed agreement
      description: Creates a new contract document and affixes it into a new contract record. Pass the agreement information in the request body to attach a document to an agreement. Fields passed in the request body include Record Type, Account Name, and Contact ID.
      parameters:
      - name: ContractAttributes
        in: query
        schema:
          type:
          - object
          - 'null'
          additionalProperties: {}
      - name: DocumentCustomProperties
        in: query
        schema:
          type:
          - object
          - 'null'
          additionalProperties: {}
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                documentFile:
                  type:
                  - string
                  - 'null'
                  description: Document file
                  format: binary
                DocumentMetadata.Tags:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                DocumentMetadata.Description:
                  type:
                  - string
                  - 'null'
            encoding:
              documentFile:
                style: form
              DocumentMetadata.Tags:
                style: form
              DocumentMetadata.Description:
                style: form
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Server Error
      operationId: postApiXauthorV1ContractsDocumentsStoreExecutedMultipart
      x-operation-id-source: derived
  /api/xauthor/v1/contracts/{contractId}/documents/import-offline:
    post:
      tags:
      - AgreementOffline
      summary: Import an offline agreement
      description: Imports a contract document into an existing contract record. You must pass the agreement information in the request body to attach a document to an agreement. Fields passed in the request body include Agreement ID, Offline Mode, and Document Content.
      parameters:
      - name: contractId
        in: path
        description: contractId
        required: true
        schema:
          type:
          - string
          - 'null'
          description: contractId
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        description: Import offline agreement request body
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Conga.XAuthor.Core.Model.AgreementDocument.ImportOfflineRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Conga.XAuthor.Core.Model.AgreementDocument.ImportOfflineRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Conga.XAuthor.Core.Model.AgreementDocument.ImportOfflineRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Conga.XAuthor.Core.Model.AgreementDocument.ImportOfflineRequest'
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Server Error
      operationId: postApiXauthorV1ContractsByContractIdDocumentsImportOffline
      x-operation-id-source: derived
  /api/xauthor/v1/contracts/{contractId}/documents/import-offline-multipart:
    post:
      tags:
      - AgreementOffline
      summary: Import an offline agreement
      description: Imports a contract document into an existing contract record. You must pass the agreement information in the request body to attach a document to an agreement. Fields passed in the request body include Agreement ID, Offline Mode, and Document Content.
      parameters:
      - name: DocumentCustomProperties
        in: query
        schema:
          type:
          - object
          - 'null'
          additionalProperties: {}
      - name: contractId
        in: path
        description: Contract Id
        required: true
        schema:
          type:
          - string
          - 'null'
          description: Contract Id
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                documentFile:
                  type:
                  - string
                  - 'null'
                  description: Document to be imported as offline Agreement
                  format: binary
                ContractId:
                  type:
                  - string
                  - 'null'
                ConvertPdfToDocx:
                  type: boolean
                DocumentMetadata.Tags:
                  type:
                  - array
                  - 'null'
                  items:
                    type: string
                DocumentMetadata.Description:
                  type:
                  - string
                  - 'null'
            encoding:
              documentFile:
                style: form
              ContractId:
                style: form
              ConvertPdfToDocx:
                style: form
              DocumentMetadata.Tags:
                style: form
              DocumentMetadata.Description:
                style: form
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse'
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Server Error
      operationId: postApiXauthorV1ContractsByContractIdDocumentsImportOfflineMultipart
      x-operation-id-source: derived
components:
  schemas:
    Apttus.XAuthor.Core.Model.FieldDefinition:
      type: object
      properties:
        fieldAPIName:
          type:
          - string
          - 'null'
        value: {}
        type:
          $ref: '#/components/schemas/Conga.XAuthor.Metadata.V2.Enum.FieldDataTypeEnum'
      additionalProperties: false
    Apttus.XAuthor.Common.DTO.Contracts.ImportOfflineAgreementResponse:
      type: object
      properties:
        isSuccess:
          type: boolean
        attachmentId:
          type:
          - string
          - 'null'
        version:
          type:
          - string
          - 'null'
      additionalProperties: false
    Apttus.XAuthor.Core.Model.CreateOfflineRequest:
      type: object
      properties:
        documentContent:
          type:
          - string
          - 'null'
        suggestedFileName:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        locale:
          $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.LocaleInfo'
        fieldDefinitions:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.FieldDefinition'
      additionalProperties: false
    Conga.XAuthor.Metadata.V2.Enum.FieldDataTypeEnum:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      - 6
      - 7
      - 8
      - 9
      - 10
      - 11
      - 12
      - 13
      - 14
      - 15
      - 16
      - 17
      - 18
      - 19
      - 20
      - 21
      - 22
      - 23
      - 24
      - 25
      - 26
      - 27
      type: integer
      format: int32
    Apttus.XAuthor.Core.Model.LocaleInfo:
      type: object
      properties:
        lcidString:
          type:
          - string
          - 'null'
        languageCode:
          type:
          - string
          - 'null'
        languageName:
          type:
          - string
          - 'null'
        localeFilePath:
          type:
          - string
          - 'null'
        locale:
          type:
          - string
          - 'null'
        dateFormat:
          type:
          - string
          - 'null'
        precision:
          type:
          - integer
          - 'null'
          format: int32
        useSymbolForFormatting:
          type:
          - string
          - 'null'
        defaultLocale:
          type:
          - string
          - 'null'
        defaultDateFormat:
          type:
          - string
          - 'null'
        defaultPrecision:
          type:
          - integer
          - 'null'
          format: int32
        defaultUseSymbolForFormatting:
          type:
          - string
          - 'null'
        currencyIsoCode:
          type:
          - string
          - 'null'
        currencySymbol:
          type:
          - string
          - 'null'
        currencyPrecision:
          type: integer
          format: int32
      additionalProperties: false
    Conga.XAuthor.Core.Model.AgreementDocument.ImportOfflineRequest:
      type: object
      properties:
        documentContent:
          type:
          - string
          - 'null'
        suggestedFileName:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
        locale:
          $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.LocaleInfo'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT