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 |
|
| integrationPlanId |
|
Outputs
| Input | Details |
|---|---|
| status |
|
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}