SObject Collections Retrieve
GET {{_endpoint}}/services/data/v{{version}}/composite/sobjects/:SOBJECT_API_NAME?ids=&fields=
Executes actions on multiple records in one request. Use SObject Collections to reduce the number of round-trips between the client and server. This resource is available in API version 42.0 and later.
Body
PARAM
Key | Datatype | Required | Description |
ids
|
null | ||
fields
|
null |
HEADERS
Key | Datatype | Required | Description |
Content-Type
|
string |
RESPONSES
status OK
[
{
"attributes": {
"type": "Account",
"url": "/services/data/v58.0/sobjects/Account/001..."
},
"Name": "Sample Account",
"Id": "001..."
}
] |
ENDPOINTS