Salesforce · JSON Structure

Salesforce Registration Initialize Request Structure

Type: object Properties: 5 Required: 5
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Registration-InitializeRequest is a JSON Structure definition published by Salesforce, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

userdata customdata password recaptcha verificationmethod

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Registration-InitializeRequest",
  "properties": {
    "userdata": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "username": {
          "type": "string"
        }
      },
      "required": [
        "firstName",
        "lastName",
        "email",
        "username"
      ]
    },
    "customdata": {
      "type": "object",
      "properties": {
        "mobilePhone": {
          "type": "string"
        },
        "streetAddress": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "state": {
          "type": "string"
        },
        "zip": {
          "type": "string"
        },
        "privacyPolicy": {
          "type": "boolean"
        }
      },
      "required": [
        "mobilePhone",
        "streetAddress",
        "city",
        "state",
        "zip",
        "privacyPolicy"
      ]
    },
    "password": {
      "type": "string"
    },
    "recaptcha": {
      "type": "string"
    },
    "verificationmethod": {
      "type": "string"
    }
  },
  "required": [
    "userdata",
    "customdata",
    "password",
    "recaptcha",
    "verificationmethod"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}