Newer Version Available
Create Integration Plan
Creates an integration plan record based on an object using Expression Sets to make
decisions and Dynamic Fulfillment Orchestration to create related object records. Recommended
objects are Application, Applicant, and PartyProfile.
This action is available in API version 60.0 and later for users with a Financial Services Cloud license.
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/createIntegrationPlan
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| contextId |
|
| expressionSetName |
|
| additionalRecordId |
|
Outputs
| Input | Details |
|---|---|
| integrationPlanId |
|
Example
JSON Request Body
1{
2 "inputs": {
3 "contextId" : "b58726b9959cd44ed82c83a4c5b43dd2519fb54931ed945a846d5d7528b19f86",
4 "expressionSetName" : "Home_and_Personal_Loan",
5 "anchorRecordId": "13XSB00000001tl2AA"
6 }
7}JSON Response Body
1{
2 "actionName": "createIntegrationPlan",
3 "errors": null,
4 "isSuccess": true,
5 "outputValues": {
6 "integrationPlanId": "13VSB000000IsYD2A0"
7 },
8 "version": 1
9}