GET /api/v1/profile/{dataModelName}/{Id}/calculated-insights/{ci-name}
Returns data model objects and a computed view 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}/calculated-insights/{ci-name}
Field Name | Field Type | Description |
---|---|---|
ci_name | string | Required. The Calculated Insight name. Example: IndividualChildrenCount__cio |
dataModelName | string | Required. Data model object API name. Example: UnifiedIndividual__dlm |
dimensions | string | Comma-separated name of the dimensions to be part of the result from the computed view. By default includes all the dimensions. Example: Id__c |
filters | string | Filters are applied only on the parent object. Example: [FirstName__c=Angel] |
id | string | Required. The value of an indexed column. Example: 003726a3-061d-33e7-a5a5-96ecae866a61 |
limit | int | The number of items to return. Example: 10 |
measures | string | Comma-separated name of the measures to be part of the result from the computed view. By default includes all the measures. Example: TotalSales__c |
offset | int | Number of rows to skip before starting to return. Example: 100 . This field is available in API version 52.0 and later. |
orderby | string | Comma-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. |
searchKey | string | Index name if the object's ID is different from the primary key. Example: FirstName__c |
timeGranularity | string | With this parameter, you can roll up the measures to various time ranges. Possible values: HOUR , DAY , MONTH , QUARTER , YEAR . This field is available in API version 53.0 and later. |
- Request
- Response
Response | Reason |
---|---|
200 OK | Callback successfully verified. |
400 Bad Request | Invalid request. |
403 Forbidden | Failed to pass authorization. |
404 Not Found | Incorrect callback ID, verification key, or both. |
422 Unprocessable Entity | Attribute name used in fields/filter parameter doesn’t exist. |
500 Server Error | Internal error. |