Query Data in Data 360
Authenticate with the Data Cloud Rest API
Retrieve Metadata
Retrieve Individual Records by Unified ID
Query Status Codes
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Retrieves all individual records associated with a unified record across different data sources. This endpoint allows you to find all individual IDs for a person across various systems, such as retail sales, loyalty programs, and mobile identity platforms.
/api/v1/universalIdLookup/{entityName}/{DataSourceId__c}/{DataSourceObjectId__c}/{SourceRecordId__c}| Parameter | Type | Description |
|---|---|---|
| entityName | string | Required. The name of the bridge table entity. |
| DataSourceId__c | string | Required. The data source ID. |
| DataSourceObjectId__c | string | Required. The data source object ID. |
| SourceRecordId__c | string | Required. The primary key of the data source record. |
SourceRecordId__c maps to Individual ID of Individual data model object. For more information, see Individual DMO.
Note
The response includes:
data: Array of record objects containing the requested dataSourceRecordId__c: The source record IDUnifiedRecordId__c: The unified record IDssot__DataSourceObjectId__c: The data source object IDssot__DataSourceId__c: The data source ID1GET https://{TSE}.360a.salesforce.com/api/v1/universalIdLookup/IndividualIdentityLink__dlm/SFMC1487860/SFMC1487860_EmailProfile/1000605221{
2 "data": [
3 {
4 "SourceRecordId__c": "100060522",
5 "UnifiedRecordId__c": "c7ac3830-77c0-3d3d-851ccee3e8d9c2c6",
6 "ssot__DataSourceObjectId__c": "SFMC1487860_EmailProfile",
7 "ssot__DataSourceId__c": "SFMC1487860"
8 },
9 {
10 "SourceRecordId__c": "138408",
11 "UnifiedRecordId__c": "c7ac3830-77c0-3d3d-851ccee3e8d9c2c6",
12 "ssot__DataSourceObjectId__c": "Mobile_AllSubscribers",
13 "ssot__DataSourceId__c": "MobileSDK"
14 },
15 {
16 "SourceRecordId__c": "0043V00001ENHZ",
17 "UnifiedRecordId__c": "c7ac3830-77c0-3d3d-851ccee3e8d9c2c6",
18 "ssot__DataSourceObjectId__c": "Salesforce_0043V00001ENHZ",
19 "ssot__DataSourceId__c": "Contact"
20 }
21 ]
22}