List All Channels

get

/content/management/api/v1.1/channels

List all channels.

Request

Query Parameters
  • This parameter is used to control the returned fields in each channel in the list. This parameter accepts a comma-separated list of field names or all. These fields will be returned for each channel in the list. All the field names are case-sensitive, and users must provide the correct field names in the query. Each channel has both standard fields (id, name, description, createdBy, createdDate, updatedBy, updatedDate, isSiteChannel) and additional fields (channelType, publishPolicy, localizationPolicy, channelTokens). When fields is specified as all (case-insensitive), all the standard and additional fields are returned. The standard fields are always returned in the response and cannot be filtered out. The user can filter out only the additional fields. This parameter is optional in the query, and by default the result shows only standard fields in the response. Any incorrect or invalid field name given in the query will throw an error.

    Example: ?fields=channelTokens,localizationPolicy
    This returns all standard fields along with the channelTokens and localizationPolicy additional fields for each channel.
    Example: ?fields=all
    This will return all standard fields and all additional fields for each channel.
  • This parameter accepts a non negative integer and is used to control the size of the result.
    Default Value: 100
  • This parameter accepts a non negative integer and is used to control the start index of the result.
    Default Value: 0
  • This parameter is used to control the order of results. The value of this query parameter follows the format of fieldName:[asc/desc]. asc stands for ascending order desc stands for descending order, default order is asc. The only field names allowed are name and updatedDate.
    Default Value: name:asc
  • This parameter accepts a query expression condition that matches the field values. The value of query condition follows the format of {fieldName} {operator} "{fieldValue}". The only fieldNames allowed for now are roleName, repositoryId and name and only allowed operators for now are mt on name and eq on the others. This query param is optional and defaults to roleName eq "viewer" which filters the resources with at least given role.
    Example:
    ?q=(roleName eq "manager")
    Default Value: roleName eq "viewer"
  • This parameter is used to filter the returned channels with the given role name. This parameter is optional in the query and by default all the channels are returned.
    Allowed Values: [ "viewer", "contributor", "manager" ]
  • This parameter accepts a boolean flag. If specified as true, then the returned result must include the total result count.
    Default Value: false
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : Channels
Type: object
Channels
Show Source
Nested Schema : aggregationResults
Type: array
Aggregation results.
Show Source
Nested Schema : items
Type: array
Singular resources contained in the collection.
Show Source
Nested Schema : pinned
Type: array
Pinned items. Shows items pinned at the top of search list
Show Source
Nested Schema : AggregationResult
Type: object
Show Source
Nested Schema : Channel
Type: object
Channels
Show Source
Nested Schema : channelAccessControls
Type: array
A list of channel access controls, allowed only for a secure regular channel. It currently allows the access control only for secure channels
Show Source
Nested Schema : channelTokens
Type: array
A list of tokens for the channel.
Show Source
Nested Schema : date
Type: object
date
Show Source
Nested Schema : rankingPolicyContentTypes
Type: array
The search ranking policy scope of the channel.
Show Source
Nested Schema : repositories
Type: array
Repositories associated with the channel. It currently exposes only the default repository for a site channel.
Show Source
Nested Schema : channelAccessControls
Type: object
channelAccessControls
Show Source
  • Allowed Values: [ "CLOUD_USERS", "SERVICE_USERS", "SPECIFIC_USERS" ]
    Access Control Type to be granted, possible values are CLOUD_USERS, SERVICE_USERS, SPECIFIC_USERS and defaults to CLOUD_USERS
  • users
    Specific users to which channel access control is provided, allowed only if the access control type is SPECIFC_USERS
Nested Schema : users
Type: array
Specific users to which channel access control is provided, allowed only if the access control type is SPECIFC_USERS
Show Source
Nested Schema : UserId
Type: object
UserId
Show Source
Nested Schema : channelToken
Type: object
channelToken
Show Source
Nested Schema : RepositoryId
Type: object
RepositoryId
Show Source

304 Response

Not modified.

400 Response

Bad request.

403 Response

Forbidden.

404 Response

Not found.

500 Response

Internal server error.
Back to Top

Examples

The following example shows how to get all channels by submission of a GET request on the REST resource using cURL:

curl -X GET -H 'Accept: application/json' 'https://host:port/content/management/api/v1.1/channels'

Example 1:

This lists all channels including totalResults value in the response.

/content/management/api/v1.1/channels?totalResults=true

Response Body

{
    "hasMore": false,
    "offset": 0,
    "count": 2,
    "limit": 2,
    "totalResults": 2,
    "items": [
    {
      "id": "CCB59F44D5015819EBC0F86A2B3133B22638AF433F1E",
      "name": "channel1",
      "description": "channel description1 updated",
      "createdBy": "marketing.user",
      "createdDate": {
        "value": "2018-12-10T07:00:42.862Z",
        "timezone": "UTC"
    },
      "updatedBy": "marketing.user",
      "updatedDate": {
        "value": "2018-12-10T09:41:56.783Z",
        "timezone": "UTC"
    },
      "isSiteChannel": false,
      "links": [
        {
      "href": "https://host:port/content/management/api/v1.1/channels/CCB59F44D5015819EBC0F86A2B3133B22638AF433F1E",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
      }
      ]
    },
    {
      "id": "CC03EC1531E0E39F6D6BA75CEE430DDBEA79EDD5F5B0",
      "name": "channel2",
      "description": "",
      "createdBy": "marketing.user",
      "createdDate": {
        "value": "2018-12-10T07:50:34.832Z",
        "timezone": "UTC"
    },
      "updatedBy": "marketing.user",
      "updatedDate": {
        "value": "2018-12-10T07:50:34.832Z",
        "timezone": "UTC"
    },
      "isSiteChannel": false,
      "links": [
        {
      "href": "https://host:port/content/management/api/v1.1/channels/CC03EC1531E0E39F6D6BA75CEE430DDBEA79EDD5F5B0",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
      }
      ]
    }
    ],
    "links": [
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/metadata-catalog/channels",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?offset=0&totalResults=true",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?offset=0&totalResults=true",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
    ]
    }

Example 2:

This lists first 3 available channels starting from index 3, with associated localizationPolicy list, includes totalResults value, rolename is manager and in descending order by field-name name in the response.

/content/management/api/v1.1/channels?limit=3&offset=3&totalResults=true&orderBy=name:desc&fields=localizationPolicy&roleName=manager

Response Body

{
    "hasMore": false,
    "offset": 3,
    "count": 2,
    "limit": 5,
    "totalResults": 5,
    "items": [
    {
      "id": "CC03EC1531E0E39F6D6BA75CEE430DDBEA79EDD5F5B0",
      "name": "channel2",
      "description": "",
      "createdBy": "marketing.user",
      "createdDate": {
        "value": "2018-12-10T07:50:34.832Z",
        "timezone": "UTC"
    },
      "updatedBy": "marketing.user",
      "updatedDate": {
        "value": "2018-12-10T07:50:34.832Z",
        "timezone": "UTC"
    },
      "isSiteChannel": false,
      "localizationPolicy": "",
      "links": [
        {
      "href": "https://host:port/content/management/api/v1.1/channels/CC03EC1531E0E39F6D6BA75CEE430DDBEA79EDD5F5B0",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
      }
      ]
    },
    {
      "id": "CCB59F44D5015819EBC0F86A2B3133B22638AF433F1E",
      "name": "channel1",
      "description": "channel description1 updated",
      "createdBy": "marketing.user",
      "createdDate": {
        "value": "2018-12-10T07:00:42.862Z",
        "timezone": "UTC"
    },
      "updatedBy": "marketing.user",
      "updatedDate": {
        "value": "2018-12-10T09:41:56.783Z",
        "timezone": "UTC"
    },
      "isSiteChannel": false,
      "localizationPolicy": "",
      "links": [
        {
      "href": "https://host:port/content/management/api/v1.1/channels/CCB59F44D5015819EBC0F86A2B3133B22638AF433F1E",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
      }
      ]
    }
    ],
    "links": [
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true&offset=3&limit=3&roleName=manager&orderBy=name:desc&fields=localizationPolicy",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true&offset=3&limit=3&roleName=manager&orderBy=name:desc&fields=localizationPolicy",
      "rel": "canonical",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/metadata-catalog/channels",
      "rel": "describedby",
      "method": "GET",
      "mediaType": "application/schema+json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true&offset=1&limit=3&roleName=manager&orderBy=name:desc&fields=localizationPolicy",
      "rel": "prev",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true&offset=0&limit=3&roleName=manager&orderBy=name:desc&fields=localizationPolicy",
      "rel": "first",
      "method": "GET",
      "mediaType": "application/json"
    },
    {
      "href": "https://host:port/content/management/api/v1.1/channels?totalResults=true&offset=3&limit=3&roleName=manager&orderBy=name:desc&fields=localizationPolicy",
      "rel": "last",
      "method": "GET",
      "mediaType": "application/json"
    }
    ]
    }
    }
Back to Top