FeedElementInput

CloudCRMCustomer ManagementEnterpriseSales

Properties

Name Type Description
body object
feedElementType string
subjectId string The ID of the parent record, user, or group
View JSON Schema on GitHub

JSON Schema

salesforce-sales-cloud-feedelementinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeedElementInput",
  "title": "FeedElementInput",
  "type": "object",
  "required": [
    "body",
    "feedElementType",
    "subjectId"
  ],
  "properties": {
    "body": {
      "$ref": "#/components/schemas/MessageBody"
    },
    "feedElementType": {
      "type": "string",
      "enum": [
        "FeedItem"
      ]
    },
    "subjectId": {
      "type": "string",
      "description": "The ID of the parent record, user, or group"
    }
  }
}