Salesforce · Schema
TransactionJournalsExecutionRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| transactionJournals | array |
JSON Schema
{
"type": "object",
"properties": {
"transactionJournals": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"ActivityDate": {
"type": "string",
"example": "example_value"
},
"JournalTypeId": {
"type": "string",
"example": "500123"
},
"LoyaltyProgramId": {
"type": "string",
"example": "500123"
},
"MemberId": {
"type": "string",
"example": "500123"
},
"Status": {
"type": "string",
"example": "example_value"
},
"appliedPromotions": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"promotionId": {
"type": "string",
"example": "500123"
},
"rewards": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object"
}
}
},
"required": [
"promotionId",
"rewards"
]
}
}
},
"required": [
"ActivityDate",
"JournalTypeId",
"LoyaltyProgramId",
"MemberId",
"Status",
"appliedPromotions"
]
}
}
},
"required": [
"transactionJournals"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "TransactionJournalsExecutionRequest"
}