Get Profile Data

Queries profile data from a specific data model object in your Data 360 instance. This endpoint allows you to retrieve records based on search filters and field specifications.

Syntax 

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

Path Parameters 

ParameterTypeDescription
dataModelNamestringRequired. The unique identifier of the data model object. Example: Individual__dlm

Query Parameters 

ParameterTypeDescription
fieldsstringComma-separated list of fields to include in the response. If this parameter isn’t specified, up to 10 arbitrary fields are returned. Example: FirstName__c,LastName__c
filtersstringFilter criteria in the format [field=value]. Example: [FirstName__c=John]
limitintegerMaximum number of records to return. Default: 49,999. Example: 1000
offsetintegerNumber of records to skip before returning results. Example: 100
orderbystringField to sort results by. Use - prefix for descending order. Example: LastName__c,-FirstName__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?fields=FirstName__c,LastName__c&filters=[FirstName__c=John]&limit=10

Response 

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

Notes 

  • You must explicitly specify fields to retrieve more than 10 fields
  • Only AND logical operator and equality comparator are supported
  • Date/time fields must use the format: YYYY-MM-DD HH:MM:SS
  • The response is limited to 4,999 records per request
  • Use pagination (limit/offset) for retrieving large datasets