You are here:
Create a Basic Omnistudio Data Mapper Extract Example (Managed Package)
For the managed package runtime, a Data Mapper extract accepts an account ID parameter and returns the account name.
This information is for Omnistudio for Managed Packages. For Omnistudio on standard runtime, see Omnistudio Help.
Download a data pack of this example for Omnistudio for Managed Packages.
- On the Extract tab, click Add Extract Step.
- From the list of Salesforce objects, choose Account.
-
Set the Extract Output Path to
Accountand the filter toId = InputId. - On the Output tab, click +.
-
Set the Extract JSON Path to
Account:Name. -
Set the Output JSON Path to
Account:Name. - Go to the Preview tab. If you see the link Edit as Params, click it.
- In the Input Parameters pane, click Add New Key/Value Pair.
-
Set the Key to
InputIdand the Value to a valid Salesforce Account object ID (which looks like this:0016100001OBpRi). - Click Execute.
-
Verify that the Response pane displays a JSON structure containing the desired output. For example:
{ "Account": { "Name":"Smith Incorporated" } }
