Record Count Response Body
Describes the result of a Record Count request.
Record Count Results
Properties
| Name | Type | Description |
|---|---|---|
| sObjects | Record Count sObject Result[] | Collection of sObject record count results. The order of objects in the collection is not guaranteed to match the order of objects in the request. |
JSON example
1{
2 "sObjects" : [ {
3 "count" : 3,
4 "name" : "Account"
5 }, {
6 "count" : 10,
7 "name" : "Contact"
8 } ]
9}