Create Integration Plan
Creates an integration plan record based on an object by using Expression Sets to make
decisions and Dynamic Fulfillment Orchestration to create related object records.
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 |
---|---|
contextDefinitionName |
|
contextMappingName |
|
isTaggedData |
|
contextData |
|
expressionSetName |
|
anchorRecordId |
|
Outputs
Input | Details |
---|---|
integrationPlanId |
|
Example
This example shows a sample input for the Create Integration Plan
action.
{
"inputs": [
{
"contextDefinitionName": "Home Loan Application Context",
"contextMappingName": "Home Loan Application Context Mapping",
"isTaggedData": false,
"contextData": {"{\"businessObjectType\": \"Application Form\",\"id\":\"13XSM0000000TjZxxU\"}"},
"expressionSetName": "HomeLoanIntegrationsES",
"anchorRecordId": "13XSM0000000TjZxxU"
}
]
}
This example shows a sample output for the Create Integration Plan
action.
{
"actionName": "createIntegrationPlan",
"errors": null,
"isSuccess": true,
"outputValues": {
"integrationPlanId": "13VSB000000IsYD2A0"
},
"version": 1
}