Newer Version Available

This content describes an older version of this product. View Latest

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
Type
ID
Description
ID of the Context Service which references the record ID that supplies expression set input parameters. Recommended record objects are Applicant, ApplicationForm, and PartyProfile.
expressionSetName
Type
string
Description
API name of the expression set that identifies eligible integrations and their dependencies.
additionalRecordId
Type
ID
Description
ID of the record that supplies any expression set input parameters missing from contextId.

Outputs

Input Details
integrationPlanId
Type
ID
Description
ID of the integration plan, which includes each callout step and step dependency.

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}