SaveResult

AutomationCloudCRMEnterpriseSales

Properties

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

JSON Schema

salesforce-automation-saveresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SaveResult",
  "title": "SaveResult",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "success": {
      "type": "boolean"
    },
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "statusCode": {
            "type": "string"
          },
          "message": {
            "type": "string"
          },
          "fields": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  }
}