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

Returns data model objects and child objects based on indexes and search filters.

HTTP method

GET

Availability

Data Cloud v1.0, Salesforce v51.0

Formats

REST

URI

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

Field NameField TypeDescription
childDataModelNamestringRequired. Child data model object API name. Example: UnifiedContactPointEmail__dlm
dataModelNamestringRequired. Data model object API name. Example: UnifiedIndividual__dlm
fieldsstringComma-separated name of the fields to be part of result from the child entity. Not specifying gives the first 10 alphabetically sorted fields. Example: Id__c, EmailAddress__c
filtersstringFilters are applied only on the parent object. Example: [FirstName__c=Mary]
idstringRequired. The value of an indexed column.
limitintThe numbers of items to return. Example: 10
offsetintNumber of rows to skip before starting to return. Example: 100. This field is available in API version 52.0 and later.
orderbystringComma-separated values to sort the result-set in ascending or descending order. Example: GenderId__c ASC, Occupation__c DESC. This field is available in API version 52.0 and later.
searchKeystringIndex name if object's ID is different from primary key. Example: FirstName__c
Request

Response

ResponseReason
200 OKCallback successfully verified
400 Bad RequestInvalid request
403 ForbiddenFailed to pass authorization.
404 Not FoundIncorrect callback ID, verification key, or both.
422 Unprocessable EntityAttribute name used in fields/filter parameter doesn’t exist.
500 Server ErrorInternal error