CategoryCollection

Paginated collection of asset categories

AutomationCustomer JourneyDigital MarketingEmailMarketingPersonalization

Properties

Name Type Description
count integer
page integer
pageSize integer
items array
View JSON Schema on GitHub

JSON Schema

salesforce-marketing-cloud-categorycollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategoryCollection",
  "title": "CategoryCollection",
  "type": "object",
  "description": "Paginated collection of asset categories",
  "properties": {
    "count": {
      "type": "integer",
      "example": 10
    },
    "page": {
      "type": "integer",
      "example": 10
    },
    "pageSize": {
      "type": "integer",
      "example": 10
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "name": {
            "type": "string"
          },
          "parentId": {
            "type": "integer"
          },
          "description": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}