Concord

Concord is a contract lifecycle management (CLM) platform for creating, negotiating, redlining, e-signing, storing, and tracking agreements in one place, with unlimited electronic signatures, automated templates, approval workflows, and reporting. Concord exposes a documented REST API (base https://api.concordnow.com/api/rest/1) that lets integrators read a user's organizations, list and retrieve agreements and their attachments and members, and pull organization reports, groups, and tags. Outbound webhooks notify external systems of agreement lifecycle events (fully approved, fully signed, expired, signature provided). API key generation is offered on paid plans only.

5 APIs 0 Features
Contract ManagementContract Lifecycle ManagementCLMContractsAgreementsE-SignatureDocument ManagementLegalWorkflow

APIs

Concord Agreements API

List an organization's agreements (contracts) and retrieve a single agreement's attachments and members. Agreements are scoped under a user's organization at /user/me/organizati...

Concord Organizations & Users API

Read the authenticated user (/user/me), the organizations that user belongs to (/user/me/organizations), and per-organization reports, groups, and tags. Concord does not publish...

Concord Documents & Attachments API

Retrieve the files (attachments) associated with an agreement at /organizations/{organizationId}/agreements/{agreementUid}/attachments. In Concord's model a document is an agree...

Concord Templates API

Generate a document from an automated (Excel-driven) template using an API key and the template UID. Concord documents that this capability exists, but the exact request path an...

Concord Webhooks (Outbound Events)

Concord sends outbound HTTP POST webhooks to a URL you configure in the Automations > Integrations UI, firing on agreement lifecycle events - document fully approved, document f...

Collections

Pricing Plans

Rate Limits

Concord Com Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

🔗
AgenticAccess
AgenticAccess
🔗
DomainSecurity
DomainSecurity
🔑
Authentication
Authentication
🔗
Website
Website
🔗
Documentation
Documentation
🔗
LinkedIn
LinkedIn
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Concord API
  version: '1.0'
request:
  auth:
    type: apikey
    apikey:
      key: X-API-KEY
      value: '{{apiKey}}'
      in: header
items:
- info:
    name: Users
    type: folder
  items:
  - info:
      name: Get the authenticated user
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/user/me
    docs: Returns the profile of the user that owns the API key. Confirmed live (401 without a valid key).
  - info:
      name: List the user's organizations
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/user/me/organizations
    docs: Lists the organizations the authenticated user belongs to (nested under `organizations`).
- info:
    name: Agreements
    type: folder
  items:
  - info:
      name: List agreements in an organization
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/user/me/organizations/:organizationId/agreements
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
    docs: Lists the agreements (contracts) in the given organization (paginated; items nested under `items`).
  - info:
      name: List an agreement's attachments
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/agreements/:agreementUid/attachments
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
      - name: agreementUid
        value: ''
        type: path
        description: The UID of the agreement.
    docs: Returns the files attached to an agreement (nested under `attachments`).
  - info:
      name: List an agreement's members
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/agreements/:agreementUid/members
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
      - name: agreementUid
        value: ''
        type: path
        description: The UID of the agreement.
    docs: Returns the members (people) associated with an agreement.
- info:
    name: Organizations
    type: folder
  items:
  - info:
      name: List organization reports
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/reports
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
    docs: Returns the reports configured for an organization (nested under `reports`).
  - info:
      name: List organization groups
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/groups
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
    docs: Returns the groups within an organization (nested under `groups`).
  - info:
      name: List organization tags
      type: http
    http:
      method: GET
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/tags
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
    docs: Returns the tags defined within an organization (nested under `tags`).
- info:
    name: Templates (MODELED - UNCONFIRMED)
    type: folder
  items:
  - info:
      name: Create a document from an automated template
      type: http
    http:
      method: POST
      url: https://api.concordnow.com/api/rest/1/organizations/:organizationId/templates/:templateUid/documents
      params:
      - name: organizationId
        value: ''
        type: path
        description: The ID of the organization.
      - name: templateUid
        value: ''
        type: path
        description: The UID of the automated template.
      body:
        type: json
        data: '{}'
    docs: MODELED / UNCONFIRMED. Concord documents that a document can be generated from an automated template using an API
      key and template UID, but the exact path and body are not published. Verify against the live account before use.
bundled: true