Create the Callout Step in DRO - Salesfroce - Dynamic Revenue Orchestrator
To create "CallOut" action in DRO steps : To create callout we need to create "Integration Definitions" setup -> Integration Definitions on search -> create new -> Once you click on save it will redirect to this page Step1 : Create Class like global with sharing class CustomFulfillmentProvider implements industriesintegrationfwk.ServiceIntegrationProvider { // 1. Primary synchronous invocation logic global industriesintegrationfwk.IntegrationCalloutResponse invokeMethod(String method, Map<String,Object> inputMap) { industriesintegrationfwk.IntegrationCalloutResponse response = new industriesintegrationfwk.IntegrationCalloutResponse(true); try { // STEP A: Extract the Orchestration Record Context IDs from the framework map String targetRecordId = ''; ...