CompositeBatchResponse

Response from a composite batch request

CloudCRMCustomer ManagementEnterpriseSales

Properties

Name Type Description
hasErrors boolean
results array
View JSON Schema on GitHub

JSON Schema

salesforce-sales-cloud-compositebatchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompositeBatchResponse",
  "title": "CompositeBatchResponse",
  "type": "object",
  "description": "Response from a composite batch request",
  "properties": {
    "hasErrors": {
      "type": "boolean"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "statusCode": {
            "type": "integer"
          },
          "result": {
            "description": "The subrequest result"
          }
        }
      }
    }
  }
}