Agorapulse · Schema

InboxItemEvent

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
uid string Unique identifier for the event
type object The event type
action object The action
organizationId integer Unique identifier for the organization
timestamp string Timestamp of the event
payload object The payload containing the inbox item information
View JSON Schema on GitHub

JSON Schema

inboxitemevent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "InboxItemEvent",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier for the event"
    },
    "type": {
      "$ref": "#/components/schemas/InboxItemEventType",
      "description": "The event type"
    },
    "action": {
      "$ref": "#/components/schemas/InboxItemAction",
      "description": "The action"
    },
    "organizationId": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier for the organization"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the event"
    },
    "payload": {
      "$ref": "#/components/schemas/InboxItem",
      "description": "The payload containing the inbox item information"
    }
  }
}