CreateResult

Result of a record creation

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
id string ID of the created record
success boolean Whether the creation was successful
errors array Errors encountered during creation
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-createresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateResult",
  "title": "CreateResult",
  "type": "object",
  "description": "Result of a record creation",
  "properties": {
    "id": {
      "type": "string",
      "description": "ID of the created record"
    },
    "success": {
      "type": "boolean",
      "description": "Whether the creation was successful"
    },
    "errors": {
      "type": "array",
      "description": "Errors encountered during creation",
      "items": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    }
  }
}