Agorapulse · Schema

GroupOfPostsEvent

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 group of posts information
View JSON Schema on GitHub

JSON Schema

groupofpostsevent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "GroupOfPostsEvent",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Unique identifier for the event"
    },
    "type": {
      "$ref": "#/components/schemas/GroupOfPostsEventType",
      "description": "The event type"
    },
    "action": {
      "$ref": "#/components/schemas/GroupOfPostsAction",
      "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/GroupOfPosts",
      "description": "The payload containing the group of posts information"
    }
  }
}