home
Release NotesRelease ResourcesGeneralDeveloper Hub

Contracts

Adobe Sign ServicesAdvantage Platform AdministrationApprovals for Advantage PlatformApprovals for SalesforceBilling for Advantage PlatformBilling for SalesforceCLM for Advantage PlatformCLM for SalesforceContracts for SalesforceCollaborateComposer for Advantage PlatformComposer for SalesforceContractsConga for Google DocsConga Upgrade ProgramContract Intelligence (Standalone)Conga CopilotCPQ for Advantage PlatformCPQ for SalesforceDeal MaximizerDigital Commerce for Advantage PlatformDigital Commerce for SalesforceDiscovery AI for Advantage PlatformDiscovery AI for SalesforceDocusign ServiceseSignature Integration with Advantage PlatformGridInvoice GenerationMix FormsOrchestrateOrder Management for Advantage PlatformOrder Management for SalesforcePartner Commerce for Advantage PlatformPartner Commerce for SalesforceQuote GenerationSign for Advantage PlatformSign for SalesforceSmart SearchTest AuthorTurboEnginesX-Author for Contracts 1.0 (Classic)X-Author for ContractsX-Author for Contracts Advanced for Advantage PlatformX-Author for Contracts Advanced for SalesforceX-Author for ExcelX-Author for Migration Manager for Advantage PlatformX-Author for Migration ManagerRelease NotesGeneral
search
search
Conga Advantage Platform
Advantage Platform Administration
CPQ
Billing for Advantage PlatformBilling for SalesforceCPQ for Advantage PlatformCPQ for SalesforceDeal MaximizerDigital Commerce for Advantage PlatformDigital Commerce for SalesforceOrder Management for Advantage PlatformOrder Management for SalesforcePartner Commerce for Advantage PlatformPartner Commerce for SalesforceTurboEngines
CLM
Adobe Sign ServicesCLM for Advantage PlatformCLM for SalesforceContracts for SalesforceContractsConga for Google DocsContract Intelligence (Standalone)Discovery AI for Advantage PlatformDiscovery AI for SalesforceDocusign ServiceseSignature Integration with Advantage PlatformSmart SearchX-Author for Contracts 1.0 (Classic)X-Author for ContractsX-Author for Contracts Advanced for Advantage PlatformX-Author for Contracts Advanced for SalesforceX-Author for ExcelX-Author for Migration Manager for Advantage PlatformX-Author for Migration Manager
Document Automation
Approvals for Advantage PlatformApprovals for SalesforceCollaborateComposer for Advantage PlatformComposer for SalesforceGridInvoice GenerationMix FormsOrchestrateQuote GenerationSign for Advantage PlatformSign for Salesforce

Conga Product Documentation

Welcome to the new doc site. Some of your old bookmarks will no longer work. Please use the search bar to find your desired topic.

search

Contracts

chevron_left

Contracts Contents

close
  • About Conga Contracts

  • What's New in Conga Contracts Documentation

  • chevron_right

    Conga Contracts for Administrators

  • chevron_right

    Conga Contracts for Users

  • chevron_right

    Conga Contracts Troubleshooting

  • expand_more

    Conga Contracts for API Developers

    • expand_more

      Conga Contracts for REST API Developers

      • chevron_right

        Getting Started as a Developer for REST API

      • expand_more

        REST API Reference

        • REST API Version 2.0

        • chevron_right

          Clause

        • expand_more

          Company

          • Query companies

            get
          • Update company

            put
          • Create company

            post
          • get company by ID

            get
          • delete company by ID

            delete
          • Modify a company

            patch
          • get company relationships by company ID

            get
          • save company relationships

            put
          • get company locations by company ID

            get
          • save company locations

            put
          • get company additional names by company ID

            get
          • save company additional names

            put
          • Get additional dynamic forms for a company

            get
          • Bulk creation of company

            post
          • Bulk modify company

            patch
          • Add a single relationship to a company

            post
          • Add a single location to a company

            post
          • Add a single additional name to a company

            post
          • delete a company additional name

            delete
          • Modify a company additional name

            patch
          • Bulk modify company additional name

            patch
          • delete a company relationship

            delete
          • Modify a company relationship

            patch
          • Bulk modify company relationship

            patch
          • delete a company location

            delete
          • Modify a company location

            patch
          • Bulk modify company location

            patch
        • chevron_right

          CompanyPerson

        • chevron_right

          Contract

        • chevron_right

          ManagedClause

        • chevron_right

          CreationTemplate

        • chevron_right

          Describe

        • chevron_right

          Document

        • chevron_right

          DynamicForm

        • chevron_right

          Event

        • chevron_right

          Flow

        • chevron_right

          ListAdmin

        • chevron_right

          Payment

        • chevron_right

          Person

        • chevron_right

          Project

        • chevron_right

          Request

        • chevron_right

          Session

        • chevron_right

          User

        • REST API Version 1.0

        • chevron_right

          Clause

        • chevron_right

          Company

        • chevron_right

          CompanyPerson

        • chevron_right

          Contract

        • chevron_right

          CreationTemplate

        • chevron_right

          Document

        • chevron_right

          DynamicForm

        • chevron_right

          Event

        • chevron_right

          ListAdmin

        • chevron_right

          Payment

        • chevron_right

          Person

        • chevron_right

          Project

        • chevron_right

          Request

        • chevron_right

          Session

        • chevron_right

          User

    • chevron_right

      (Deprecated) Conga Contracts for SOAP API Developers

  • Conga Customer Community & Learning Center Resources

  1. Contracts (current)
  2. arrow_right
  3. Conga Contracts for API Developers
  4. arrow_right
  5. Conga Contracts for REST API Developers
  6. arrow_right
  7. REST API Reference

list_altShow Contents

chevron_left

Contracts

Company

chevron_right
download

Bulk modify company

patch
https://app1.congacontracts.com/Contracts/rest/v2
/company/bulk

Request

Body

array of:
objectId
string
secondaryId
string
referenceId
string
updates
dictionary[string, object]

Responses

200

Results of the updates

Body

responses
/
200
array of:
objectId
string
referenceId
string
success
boolean
message
string
Body
1
[
2
{
3
"objectId": "string",
4
"secondaryId": "string",
5
"referenceId": "string",
6
"updates": {
7
"property1": {},
8
"property2": {}
9
}
10
}
11
]
curl --request PATCH \
--url https://app1.congacontracts.com/Contracts/rest/v2/company/bulk \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '[
{
"objectId": "string",
"secondaryId": "string",
"referenceId": "string",
"updates": {
"property1": {},
"property2": {}
}
}
]'
Response Example
1
[
2
{
3
"objectId": "string",
4
"referenceId": "string",
5
"success": true,
6
"message": "string"
7
}
8
]
chevron_leftchevron_right
chevron_right

Footer Section

Explore


Conga.com
Legal
Feedback
Contact Support

Copyright © 2025 Conga Corporation • All Rights Reserved

Cookie Notice

We use cookies to improve your experience on our site. To find out more, read our cookie policy.