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

Returns data model objects based on search indexes and filters. Use this API call to retrieve the object record based on the primary key or secondary keys. Returns an empty list when records aren’t found.

HTTP method

GET

Availability

Data Cloud v1.0, Salesforce v51.0

Formats

REST

URI

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

Field NameField TypeDescription
dataModelNamestringRequired. Data model object API name. Example: UnifiedIndividual__dlm
fieldsstringOptional. Distinct comma-separated name of fields that you want to include in the result. Example: Id__c,FirstName__c,GenderId__c,Occupation__c
filtersstringA set of comma-separated equality expressions within square brackets. Example: [FirstName__c=DON]
IdstringRequired. The value of the primary/secondary key field. Defaults to primary key when not specified. Example: John
limitintThe numbers of records to be returned. Example: 10
offsetintThe number of rows to skip before starting to return. Example: 100. This field is available in API version 52.0 and later.
orderbystringA list of comma-separated values to sort the results in ascending or descending order. Example: GenderId__c ASC, Occupation__c DESC. This field is available in API version 52.0 and later.
searchKeystringThe name of the key field, if a field other than the primary key is used. Example: FirstName__c
Request

Response

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