RecordInput

Input for creating or updating a record

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
apiName string API name of the sObject type (required for create)
fields object Map of field API names to values
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-recordinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordInput",
  "title": "RecordInput",
  "type": "object",
  "description": "Input for creating or updating a record",
  "properties": {
    "apiName": {
      "type": "string",
      "description": "API name of the sObject type (required for create)"
    },
    "fields": {
      "type": "object",
      "description": "Map of field API names to values",
      "additionalProperties": true
    }
  }
}