Agorapulse · Schema

SearchCalendarNoteOpenResponse

Response containing search results for calendar notes

Social Media ManagementSocial MediaCRMAnalyticsPublishingInbox ManagementSocial Listening

Properties

Name Type Description
notes array List of calendar notes matching the search criteria
query object Query parameters used for the search
View JSON Schema on GitHub

JSON Schema

searchcalendarnoteopenresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SearchCalendarNoteOpenResponse",
  "type": "object",
  "properties": {
    "notes": {
      "type": "array",
      "description": "List of calendar notes matching the search criteria",
      "items": {
        "$ref": "#/components/schemas/SearchCalendarNoteOpenResponse.CalendarNoteOpenItem"
      }
    },
    "query": {
      "type": "object",
      "description": "Query parameters used for the search",
      "allOf": [
        {
          "$ref": "#/components/schemas/SearchCalendarNoteOpenRequest"
        },
        {
          "type": "object"
        }
      ]
    }
  },
  "description": "Response containing search results for calendar notes"
}