Salesforce · Schema
CorporateMemberEnrollmentsRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| enrollmentDate | string | |
| membershipNumber | string | |
| associatedAccountDetails | object | |
| memberStatus | string | |
| createTransactionJournals | string |
JSON Schema
{
"type": "object",
"properties": {
"enrollmentDate": {
"type": "string",
"example": "example_value"
},
"membershipNumber": {
"type": "string",
"example": "example_value"
},
"associatedAccountDetails": {
"type": "object",
"properties": {
"name": {
"type": "string",
"example": "Example Title"
},
"phone": {
"type": "string",
"example": "example_value"
},
"website": {
"type": "string",
"example": "example_value"
},
"allowDuplicateRecords": {
"type": "string",
"example": "example_value"
}
},
"required": [
"name",
"phone",
"website",
"allowDuplicateRecords"
]
},
"memberStatus": {
"type": "string",
"example": "example_value"
},
"createTransactionJournals": {
"type": "string",
"example": "example_value"
}
},
"required": [
"enrollmentDate",
"membershipNumber",
"associatedAccountDetails",
"memberStatus",
"createTransactionJournals"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CorporateMemberEnrollmentsRequest"
}