Data Mapper Clear Cache Input

Input representation of the details to clear the cache of the data mappers.
JSON example
This is a sample example to clear the execution cache by using only the name of the data mapper.
1{
2  "cacheStorageType": "Metadata",
3  "dataMapperList": {
4    "dataMappers": [
5      {
6        "dataMapperName": "DRWithLoad"
7      }
8    ]
9  }
10}
This is a sample example to clear the execution cache by using the name of the data mapper along with additional inputs.
1{
2  "cacheStorageType": "Session",
3  "dataMapperList": {
4    "dataMappers": [
5      {
6        "dataMapperName": "DRWithLoad",
7        "input": {
8          "Name": "Get Account Details"
9        }
10      }
11    ]
12  }
13}
Properties
Name Type Description Required or Optional Available Version
cacheStorageType String Storage type that's used for caching the data. Valid values are:
  • Session—Cache is stored in the current user session.
  • Org—Cache is shared across the entire organization.
  • All—Refers to both session and org-level cache.
Required 64.0
dataMapperList Data Mapper Details[] List of data mappers to clear the cache for. Required 64.0