SaveResult

Result of a single record create, update, or delete operation

CloudCRMCustomer ManagementEnterpriseSales

Properties

Name Type Description
id string
success boolean
errors array
View JSON Schema on GitHub

JSON Schema

salesforce-sales-cloud-saveresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SaveResult",
  "title": "SaveResult",
  "type": "object",
  "description": "Result of a single record create, update, or delete operation",
  "properties": {
    "id": {
      "type": "string"
    },
    "success": {
      "type": "boolean"
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiError"
      }
    }
  }
}