BatchResponse

AutomationCloudCRMEnterpriseSales

Properties

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

JSON Schema

salesforce-automation-batchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchResponse",
  "title": "BatchResponse",
  "type": "object",
  "properties": {
    "hasErrors": {
      "type": "boolean"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "statusCode": {
            "type": "integer"
          },
          "result": {
            "description": "The response body"
          }
        }
      }
    }
  }
}