Salesforce · JSON Structure

Salesforce Individual Member Enrollments Request Structure

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

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

Properties

enrollmentDate membershipNumber associatedContactDetails memberStatus createTransactionJournals transactionJournalStatementFrequency transactionJournalStatementMethod enrollmentChannel canReceivePromotions canReceivePartnerPromotions membershipEndDate

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "IndividualMemberEnrollmentsRequest",
  "properties": {
    "enrollmentDate": {
      "type": "string"
    },
    "membershipNumber": {
      "type": "string"
    },
    "associatedContactDetails": {
      "type": "object",
      "properties": {
        "firstName": {
          "type": "string"
        },
        "lastName": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "allowDuplicateRecords": {
          "type": "string"
        }
      },
      "required": [
        "firstName",
        "lastName",
        "email",
        "allowDuplicateRecords"
      ]
    },
    "memberStatus": {
      "type": "string"
    },
    "createTransactionJournals": {
      "type": "string"
    },
    "transactionJournalStatementFrequency": {
      "type": "string"
    },
    "transactionJournalStatementMethod": {
      "type": "string"
    },
    "enrollmentChannel": {
      "type": "string"
    },
    "canReceivePromotions": {
      "type": "string"
    },
    "canReceivePartnerPromotions": {
      "type": "string"
    },
    "membershipEndDate": {
      "type": "string"
    }
  },
  "required": [
    "enrollmentDate",
    "membershipNumber",
    "associatedContactDetails",
    "memberStatus",
    "createTransactionJournals",
    "transactionJournalStatementFrequency",
    "transactionJournalStatementMethod",
    "enrollmentChannel",
    "canReceivePromotions",
    "canReceivePartnerPromotions",
    "membershipEndDate"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}