CreateRecordResult

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
id string The 18-character ID of the newly created record
success boolean Whether the create operation succeeded
errors array
View JSON Schema on GitHub

JSON Schema

salesforce-automation-createrecordresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRecordResult",
  "title": "CreateRecordResult",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The 18-character ID of the newly created record"
    },
    "success": {
      "type": "boolean",
      "description": "Whether the create operation succeeded"
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ApiError"
      }
    }
  }
}