home

General

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
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

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

General

chevron_left

General Contents

close
  • Features by Release

  • Conga Upgrade Program

  • chevron_right

    System Requirements and Supported Platforms Matrix

  • Managed Packages Dependency Matrix

  • Conga Applications in Salesforce Lightning

  • Salesforce Multi-Factor Authentication Support for Conga Commerce

  • chevron_right

    Conga Product Glossary

  • chevron_right

    Conga Upgrade Assistant

  • chevron_right

    Product Retirement Schedule

  • expand_more

    Developer Center

    • chevron_right

      Approvals for Salesforce REST APIs

    • chevron_right

      Billing for Salesforce REST APIs

    • chevron_right

      CLM for Salesforce REST APIs

    • chevron_right

      CPQ for Salesforce REST APIs

    • chevron_right

      Digital Commerce for Salesforce REST APIs

    • expand_more

      Discovery AI for Salesforce REST APIs

      • chevron_right

        Admin Config

      • chevron_right

        Conga APIs

      • chevron_right

        Documents

      • chevron_right

        Tenant Administration

      • chevron_right

        Config Discovery and Management

      • expand_more

        Document Analysis

        • Get information for an upload request

          get
        • Send information for upload

          post
        • Get job status

          get
        • Update job status

          post
        • Get document status

          get
        • Show document status

          post
        • Get extracted provisions

          get
        • Extract data from natural language

          get
        • Extract date and time from natural language

          get
        • Log feedback event

          post
        • Export a document

          post
        • Retrieve info to download a document

          get
        • Download an exported document to a named location

          post
        • Delete a document

          delete
      • chevron_right

        Insight Analysis and Management

    • chevron_right

      Orchestrate REST APIs

    • chevron_right

      Partner Commerce for Salesforce REST APIs

    • chevron_right

      TurboEngines REST APIs

  1. General
  2. arrow_right
  3. Developer Center
  4. arrow_right
  5. Discovery AI for Salesforce REST APIs

list_altShow Contents

chevron_left

General

Document Analysis

chevron_right
download

Export a document

post
https://IDD_URL/idd/api/{version}
/{tenantId}/analyze/export

Exports a document based on the settings given in the request body's Payload object.

For requests with automatic notification enabled (that is, with the notificationInfo object included in the request), the request body in the notification resembles:

status: complete,
responseBody:
  is_successful: true,
  redirect_href: https://ca.app.kirasystems.com/platform-api/v1/downloads/3625/files,
  downloadId: 3625

Request

Security: API Key
Security: Bearer Auth

Path Parameters

tenantId
string
required

Tenant name

Query Parameters

documentid
string
required

Document ID

format
string
required

File format

Allowed values:
pdfwordexcel
instanceurl
string
required

Instance URL

userid
string
required

User ID

Example:
a56392269d970c
username
string
required

User name

Example:
dummyuser

Body

Request for export. If notificationInfo is included, polling is performed for export completion.

payload
object
export_format
string
Example:
pdf
include_highlight
boolean
Example:
false
pdf_quality
string
Example:
low
notificationInfo
object

Including this webhook information enables automatic polling by IDD.

url
string<string>

URL

Example:
https://www.conga.com/maxupload/notify
method
string<string>

Request method

Example:
POST

Responses

202
400
403
404
500
503

Returns job ID and document ID. Automatic polling of the job status begins.

Body

responses
/
202
jobId
string<string>

Job ID

Example:
4839
documentId
string<string>

Document ID

Example:
83920
context
object
instanceUrl
string
Example:
https://www.conga.com
Auth
:
Server Variables
:
Parameters
:
:
:
:
:
:
Body
1
{
2
"payload": {
3
"export_format": "pdf",
4
"include_highlight": false,
5
"pdf_quality": "low"
6
},
7
"notificationInfo": {
8
"url": "https://www.conga.com/maxupload/notify",
9
"method": "POST"
10
}
11
}
curl --request POST \
--url 'https://idd_url/idd/api/v2/tenantId/analyze/export?format=pdf' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: 123' \
--data '{
"payload": {
"export_format": "pdf",
"include_highlight": false,
"pdf_quality": "low"
},
"notificationInfo": {
"url": "https://www.conga.com/maxupload/notify",
"method": "POST"
}
}'
Response Example
1
{
2
"jobId": "4839",
3
"documentId": "83920",
4
"context": {
5
"instanceUrl": "https://www.conga.com"
6
}
7
}
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.