No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
Newer Version Available
Get Field Values from a High-Data-Volume External Object Record
You use the SObject Rows resource to retrieve field values from a record. Specify the fields you want to retrieve in the fields parameter and use the GET method of the resource. In the following example, the Country custom field is retrieved from an external object that is associated with a high-data-volume external data source.
- Example for retrieving values from fields on the Customer external object
-
1/services/data/v32.0/sobjects/Customer__x/x01D0000000002RIAQ?fields=Country__c - Example request body
- None required
- Example response body
-
1{ 2 "attributes" : { 3 "type" : "Customer__x", 4 "url" : "/services/data/v32.0/sobjects/Customer__x/x01D0000000002RIAQ" 5 }, 6 "Country__c" : "Argentina", 7 "Id" : "x01D0000000002RIAQ" 8}