Run Integration Plan

Triggers an integration plan using Dynamic Fulfillment Orchestration, which ensures each callout happens at the right time by queuing it alongside its dependent steps.

This action is available in API version 60.0 and later for users with a Agentforce Financial Services license.

Supported REST HTTP Methods

URI
/services/data/vXX.X/actions/standard/runIntegrationPlan
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.
integrationPlanId
Type
ID
Description
ID of the integration plan, which includes each callout step and step dependency.

Outputs

Input Details
status
Type
ID
Description
Status of the integration plan’s progress. Valid values are Running, Not Started, Failed.

Example

JSON Request Body
1{
2  "inputs": {
3    "integrationPlanId" : "13VSB000000IsYD2A0"
4  }
5}
JSON Response Body
1{
2  "actionName": "runIntegrationPlan",
3  "errors": null,
4  "isSuccess": true,
5  "outputValues": {
6    "status": "SUCCESS"
7  },
8  "version": 1
9}