Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
Create Contract Document Generation Action
This action is available in API version 61.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/v59.0/actions/standard/createClmContract
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| contractRecordType |
|
| documentTemplateName |
|
| sourceRecordId |
|
| isCreateContractDocument |
|
Output
| Output | Details |
|---|---|
| contractId |
|
Usage
- Sample Input
-
This sample request is for the Create Contract Document Generation action.
1{ 2 "sourceRecordId": "13ZSB0000000OYxxAM", 3 "contractRecordType": "ContractLifecycleManagement", 4 "documentTemplateName": "SAMPLE_LoanApprovalTemplate", 5 "isCreateContractDocument": true 6} - Sample Output
-
This sample response is for the Create Contract Document Generation action.
1{ 2 "contractId": [ 3 "800SB00000KLbHxxA1" 4 ] 5}