Salesforce · Schema

CreateaRecordRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
allowSaveOnDuplicate boolean
apiName string
fields object
View JSON Schema on GitHub

JSON Schema

salesforce-createa-record-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "allowSaveOnDuplicate": {
      "type": "boolean",
      "example": true
    },
    "apiName": {
      "type": "string",
      "example": "example_value"
    },
    "fields": {
      "type": "object",
      "properties": {
        "FieldAPIName": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "FieldAPIName"
      ]
    }
  },
  "required": [
    "allowSaveOnDuplicate",
    "apiName",
    "fields"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreateaRecordRequest"
}