Skip to main content
Skip table of contents

Generate documents using compose API (Legacy)

Notes:

This API is has been deprecated.

New version of compose API named Task API has been released: Task API

Notes:

  • This API is not included in the default product. API usage is available as an add on feature and is priced per API call. Contact us if you would like to use API for your solution.

  • If the API limit is exceeded by a large margin, the API access may be suspended.

  • API rate limit is 1 call in 3 seconds per user

How does Compose API work?

The Compose API expects a HTTP request that contains all the information necessary to generate the document. The template and other data is loaded from Salesforce with the credentials provided by one of the two options: sessionID and serverURL parameters or OAuth authentication process.

The response from the API depends on the provided parameters and template logic. By default, the API returns nothing and the response is HTTP 200 OK. The template can be set to return files with the returnDocumentcommand, or text with the returnString command.

When composing a template with the returnDocument command, the API can be configured to return a link to the result file instead of the file data being included in the response. If the getLink parameter is "true", the response is a JSON object with the key "url", whose value is a URL that can be used to download the result document. The file is available via the URL for 5 minutes after calling the API.

During testing it can be useful to set the getLogs parameter to value "true". This makes the API return a JSON array of errors instead of the command-defined result. An empty array is returned if there were no errors. The log output can be further configured with the logLevel parameter to return also warnings and informational messages.

Parameters

Name

Value

Required

Example

Notes

action

compose

Yes

action=compose

This identifies which API is used and has to be written exactly as in the Value-column.

contentDisposition

inline | attachment

contentDisposition=inline

Can be used to set the "Content-Disposition" header of the response if the result was defined with the returnDocument command.

contentType

A MIME type.

contentType=application/json

Can be used to set the "Content-Type" header of the response if the result was defined with the returnString command. By default, this header's value is "text/plain". 

getLink

Values trueor false. Is false by default if not included in the request.

getLink=true

Can be used to return a link to the result document instead of the document itself if the result was defined with the returnDocument command.

getLogs

Values true or false. Is false by default if not included in the request.

getLogs=true

Can be used to return compose logs instead of the result document. This is useful for debugging documents used with the API. Returned logs are in JSON format. This parameter takes precedence over getLink.

logLevel

SEVERE|WARNING|INFO

logLevel=WARNING

Can be used to provide more logging information. Default is SEVERE where only serious errors are reported.

serverURL

Salesforce SOAP API endpoint URL. The URL should be percent encoded.

serverURL=
https%3A%2F%2Feu1-api.salesforce.com
%2Fservices%2
FSoap%2Fc%2F37.0%2
FORG_ID_HERE

Can be included in the request to specify the Salesforce instance endpoint.

sessionID

Salesforce session ID.

Can be included in the request to use the sessionID directly instead of OAuth.

sfEnvironment

sandbox

sfEnvironment=sandbox

Has to be included in the request when using OAuth and using a sandbox instance.

templateID

Salesforce record ID of the template. (ContentDocument, Attachment, Document)

Yes

templateID=069D0000003HMPB

The user has to have read access to this file. Supported types are ContentDocument, Attachment and Document.

You can add additional parameters to pass information to your template. These parameters can be accessed in the template with the ${param.param_name} notation.

Remote site settings

Before outbound API calls can be invoked from Salesforce, a remote site must be added.

Go to Setup -> Security -> Remote Site Settings -> New Remote Site

Add new site with URL: https://dae.documill.com  

Integration with Salesforce Process Builder

Dynamo compose API can be integrated with Process Builder by using special Apex action class. Source code of the class is included below. This code can be copied to Salesforce organization by adding new Apex class.

CODE
/** Helper class to invoke Dynamo API from Process Builder.*/global class DynamoAPIHelper {@InvocableMethod(label='Dynamo API' description='Dynamo API for Process Builder')public static List<DynamoAPIResult> callDynamoInvocable(List<DynamoAPIRequest> requestList){DynamoAPIRequest request = requestList[0];sendRequestAsync(request.templateID,request.recordID,request.paramName,request.paramValue,request.eventID,request.getLogs,request.endPoint,request.sessionID,request.partnerServerURL);List<DynamoAPIResult> results = new List<DynamoAPIResult>();DynamoAPIResult result = new DynamoAPIResult();result.status = 'Asynchronous Dynamo API call. Template ID=' + request.templateID;return results;}@future(callout=true)public static void sendRequestAsync(String templateID,String recordID,String paramName,String paramValue,String eventID,boolean getLogs,String endPoint,String sessionID,String partnerServerURL){HttpRequest req = new HttpRequest();if (String.isBlank(endPoint))endPoint = 'https://dynamo-eu1.documill.com/service/api';req.setEndpoint(endPoint);req.setMethod('POST');req.setTimeout(120000);String body = buildBody(templateID,recordID,paramName,paramValue,eventID,getLogs,endPoint,sessionID,partnerServerURL);req.setBody(body);Http http = new Http();HTTPResponse res = http.send(req);}private static String buildBody(String templateID,String recordID,String paramName,String paramValue,String eventID,boolean getLogs,String endPoint,String sessionID,String partnerServerURL){if (String.isBlank(eventID)) {eventID = 'new';}if (String.isBlank(partnerServerURL)) {partnerServerURL = URL.getSalesforceBaseUrl().toExternalForm() + '/services/Soap/u/43.0/' + UserInfo.getOrganizationId();}if (String.isBlank(sessionID)) {sessionID = UserInfo.getSessionId();}List<String> l = new List<String>();l.add('action=compose');l.add('&sessionID=' + sessionID);l.add('&serverURL=' + partnerServerURL);l.add('&templateID=' + templateID);l.add('&eventID=' + eventID);l.add('&id=' + recordID);if (!String.isBlank(paramName) && !String.isBlank(paramValue)) {l.add('&' + paramName + '=' + paramValue);}l.add('&getLogs=' + getLogs);String body = String.join(l,'');return body;}global class DynamoAPIRequest {@InvocableVariable(required=true)global String templateID;@InvocableVariable(required=true)global String recordID;@InvocableVariable(required=false)global String paramName;@InvocableVariable(required=false)global String paramValue;@InvocableVariable(required=false)global String eventID;@InvocableVariable(required=false)global boolean getLogs;@InvocableVariable(required=false)global String endPoint;@InvocableVariable(required=false)global String sessionID;@InvocableVariable(required=false)global String partnerServerURL;}global class DynamoAPIResult {@InvocableVariableglobal String status;}}

When Apex class has been added it will be visible in Process Builder.

When editing Immediate Action step, choose Apex Action and Apex class Dynamo API.

Define Dynamo API Apex variables recordID and templateID (both are required).

image-20240109-095840.png

When ready your process should look like example above. When process is activated it's ready to call Dynamo API when defined conditions are met.

Process builder initiated API calls will return immediately (asynchronous call) and can't return any values, however initiated template logic itself can update fields and create records.

Direct call

This example URL generates a document from template 069D0000003e56o with record ID 006D000000LSeWD. The generated document is downloaded directly from the link. 

CODE
https://dynamo-eu1.documill.com/service/api?action=compose&templateID=069D0000003e56o&id=006D000000LSeWD&serverURL=https%3A%2F%2Feu1-api.salesforce.com%2Fservices%2FSoap%2Fc%2F37.0%200DABCDEF&sessionID=123456789

Direct call from Apex

This example shows how to send POST request to Dynamo API using APEX code.
Request includes one custom parameter json. It's used to pass JSON coded value to Dynamo template.

If executed template should return document then the template logic should have returnDocument command.

CODE
public void sendRequest() {HttpRequest req = new HttpRequest();req.setEndpoint('https://dynamo-eu1.documill.com/service/api');req.setMethod('POST');String json = '{"field1" : "field1 Value", "field2" : "field2 Value"}';String templateID = 'xxxxxxxxxxxx';String serverURL = URL.getSalesforceBaseUrl().toExternalForm() + '/services/Soap/u/43.0/' + UserInfo.getOrganizationId();req.setBody('action=compose' +'&json=' + json +'&templateID=' + templateID +'&serverURL=' + serverURL +'&sessionID=' + UserInfo.getSessionId());Http http = new Http();HTTPResponse res = http.send(req);// Handle response here}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.