DataMapping
List Data Mappings
Get a list of data mappings configured for this Memory Store.
get/v1/ControlPlane/Stores/{storeId}/DataMappings
Query parameters
pageSizeinteger
The maximum number of items to return per page, maximum of 100.
pageTokenstring
The token for the page of results to retrieve.
orderBy'ASC' | 'DESC'
Either 'ASC' or 'DESC' to sort results ascending or descending respectively.
type'DATASET'
The type of data mapping defining how data flows into the Memory Store.
Example:DATASET
Filter data mappings by type.
Response
DataMappings retrieved successfully.
Example response
{
"dataMappings": [
{
"displayName": "crm-contacts",
"description": "Syncs customer data from CRM dataset to profile traits",
"isEnabled": true,
"mappingTo": {
"type": "TRAITS",
"mappings": [
{
"fieldName": "primary_email",
"traitGroup": "Contact",
"traitName": "email"
}
]
},
"mappingFrom": {
"type": "DATASET",
"datasetId": "tdi_dataset_00000000000000000000000000"
},
"id": "mem_datamapping_00000000000000000000000000",
"createdAt": "2026-01-15T10:30:00Z",
"updatedAt": "2026-01-15T11:45:00Z",
"version": 3
}
],
"meta": {
"nextToken": "eyJlYXN0ZXIiOiJlZ2cifQ",
"previousToken": "eyJlYXN0ZXIiOiJlZ2cifQ"
}
}