Interface ChannelsApiGetLatestChannelItemsRequest

Request parameters for getLatestChannelItems operation in ChannelsApi.

ChannelsApiGetLatestChannelItemsRequest

interface ChannelsApiGetLatestChannelItemsRequest {
    channelIds?: string[];
    fields?: ItemFields[];
    filters?: ItemFilter[];
    limit?: number;
    startIndex?: number;
    userId?: string;
}

Properties

channelIds?: string[]

Optional. Specify one or more channel id's, comma delimited.

ChannelsApiGetLatestChannelItems

fields?: ItemFields[]

Optional. Specify additional fields of information to return in the output.

ChannelsApiGetLatestChannelItems

filters?: ItemFilter[]

Optional. Specify additional filters to apply.

ChannelsApiGetLatestChannelItems

limit?: number

Optional. The maximum number of records to return.

ChannelsApiGetLatestChannelItems

startIndex?: number

Optional. The record index to start at. All items with a lower index will be dropped from the results.

ChannelsApiGetLatestChannelItems

userId?: string

Optional. User Id.

ChannelsApiGetLatestChannelItems