Get Profile Data by ID

Retrieves a specific profile record by its unique identifier. This endpoint allows you to access complete record data including all specified fields.

Syntax 

  • HTTP Method: GET
  • Availability: Data 360 v1.0, Salesforce v51.0
  • format: REST
  • URI: /api/v1/profile/{dataModelName}/{Id}

Path Parameters 

ParameterTypeDescription
dataModelNamestringRequired. The unique identifier of the data model object. Example: Individual__dlm
IdstringRequired. The unique identifier of the record to retrieve. Example: 123

Query Parameters 

ParameterTypeDescription
fieldsstringComma-separated list of fields to include in the response. Example: FirstName__c,LastName__c
searchkeystringField to search by. Example: Email__c

Response Structure 

The response includes:

  • data: Array of record objects containing the requested data
  • done: boolean indicating if all results have been returned

Examples 

Request 

1GET https://{TSE}.360a.salesforce.com/api/v1/profile/Individual__dlm/123?fields=FirstName__c,LastName__c

Response 

1{
2  "data": [
3    {
4      "FirstName__c": "John",
5      "LastName__c": "Doe"
6    }
7  ],
8  "done": true
9}

Notes 

  • You must explicitly specify fields to retrieve more than 10 fields
  • The record ID must be a valid identifier in the data model object
  • The response includes only the specified fields
  • If no fields are specified, up to 10 fields are returned
  • The API supports both primary and secondary key lookups