Salesforce · Schema
FeedElementsBatchPostRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| inputs | array |
JSON Schema
{
"type": "object",
"properties": {
"inputs": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"richInput": {
"type": "object",
"properties": {
"subjectId": {
"type": "string",
"example": "500123"
},
"body": {
"type": "object",
"properties": {
"messageSegments": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object"
}
}
},
"required": [
"messageSegments"
]
},
"capabilities": {
"type": "object",
"properties": {
"files": {
"type": "object",
"properties": {
"items": {
"type": "object"
}
},
"required": [
"items"
]
}
},
"required": [
"files"
]
},
"feedElementType": {
"type": "string",
"example": "example_value"
}
},
"required": [
"subjectId",
"body",
"feedElementType"
]
}
},
"required": [
"richInput"
]
}
}
},
"required": [
"inputs"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "FeedElementsBatchPostRequest"
}