Conga Document Sync API

This class contains API endpoints for Document Transfer Metadata Sync.

Operations 3

POST /api/xauthor/v1/document-sync Sync the document #
POST /api/xauthor/v1/document-sync/update-document-properties Update the document Properties #
GET /api/xauthor/v1/document-sync/{externalId}/attachment-id Gets the attachment id by external id #

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-documentsync-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-documentsync-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: X-Author Document Sync API
  version: v1
  description: This class contains API endpoints for Document Transfer Metadata Sync.
servers:
- url: https://xauthor-prod-rls10.congacloud.com
- url: https://xauthor-preview-rls09.congacloud.com
security:
- bearerAuth: []
tags:
- name: DocumentSync
  description: This class contains API endpoints for Document Transfer Metadata Sync.
paths:
  /api/xauthor/v1/document-sync:
    post:
      tags:
      - DocumentSync
      summary: Sync the document
      parameters:
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        description: The request
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.DocumentSyncRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.DocumentSyncRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.DocumentSyncRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Apttus.XAuthor.Core.Model.DocumentSyncRequest'
      responses:
        '200':
          description: Success
      operationId: postApiXauthorV1DocumentSync
      x-operation-id-source: derived
  /api/xauthor/v1/document-sync/update-document-properties:
    post:
      tags:
      - DocumentSync
      summary: Update the document Properties
      parameters:
      - name: xaAddinLoadType
        in: query
        description: ''
        schema:
          $ref: '#/components/schemas/Apttus.XAuthor.Common.Enum.XAAddInLoadType'
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      requestBody:
        description: The request
        content:
          application/json-patch+json:
            schema:
              type:
              - string
              - 'null'
              description: The request
              format: byte
          application/json:
            schema:
              type:
              - string
              - 'null'
              description: The request
              format: byte
          text/json:
            schema:
              type:
              - string
              - 'null'
              description: The request
              format: byte
          application/*+json:
            schema:
              type:
              - string
              - 'null'
              description: The request
              format: byte
      responses:
        '200':
          description: Success
      operationId: postApiXauthorV1DocumentSyncUpdateDocumentProperties
      x-operation-id-source: derived
  /api/xauthor/v1/document-sync/{externalId}/attachment-id:
    get:
      tags:
      - DocumentSync
      summary: Gets the attachment id by external id
      parameters:
      - name: externalId
        in: path
        description: The external id
        required: true
        schema:
          type:
          - string
          - 'null'
          description: The external id
      - name: OrgType
        in: header
        required: true
        schema:
          type: string
          default: RLP
      responses:
        '200':
          description: Success
      operationId: getApiXauthorV1DocumentSyncByExternalIdAttachmentId
      x-operation-id-source: derived
components:
  schemas:
    Apttus.XAuthor.Common.Enum.XAAddInLoadType:
      enum:
      - 0
      - 1
      - 2
      - 3
      - 4
      - 5
      type: integer
      format: int32
    Apttus.XAuthor.Core.Model.DocumentSyncRequest:
      type: object
      properties:
        documentContent:
          type:
          - string
          - 'null'
        objectId:
          type:
          - string
          - 'null'
        objectVersionId:
          type:
          - string
          - 'null'
        objectType:
          type:
          - string
          - 'null'
        documentId:
          type:
          - string
          - 'null'
        attachmentId:
          type:
          - string
          - 'null'
        templateId:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT