GET /api/v1/profile/{dataModelName}/{Id}

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

  • HTTP Method: GET
  • Availability: Data Cloud v1.0, Salesforce v51.0
  • format: REST
  • URI: /api/v1/profile/{dataModelName}/{Id}
ParameterTypeDescription
dataModelNamestringRequired. The unique identifier of the data model object. Example: Individual__dlm
IdstringRequired. The unique identifier of the record to retrieve. Example: 123
ParameterTypeDescription
fieldsstringComma-separated list of fields to include in the response. Example: FirstName__c,LastName__c
searchkeystringField to search by. Example: Email__c

The response includes:

  • data: Array of record objects containing the requested data
  • done: boolean indicating if all results have been returned
  • 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