@twilio/flex-sdk
    Preparing search index...

    Interface GetContentTemplatesOptions

    Options for filtering and paginating the content templates list.

    interface GetContentTemplatesOptions {
        channelEligibility?: string[];
        content?: string;
        contentName?: string;
        contentType?: string[];
        dateCreatedAfter?: string;
        dateCreatedBefore?: string;
        language?: string[];
        pageSize?: number;
        pageToken?: string;
        sortByContentName?: string;
        sortByDate?: string;
    }
    Index

    Properties

    channelEligibility?: string[]

    Filter by array of ChannelEligibility(s), where ChannelEligibility=channel:status.

    content?: string

    Filter by Regex Pattern in template content.

    contentName?: string

    Filter by Regex Pattern in content name.

    contentType?: string[]

    Filter by array of contentType(s).

    dateCreatedAfter?: string

    Filter to resources created after this date-time (inclusive).

    dateCreatedBefore?: string

    Filter to resources created before this date-time (inclusive).

    language?: string[]

    Filter by array of valid language(s).

    pageSize?: number

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    pageToken?: string

    The page token for pagination. Provided by the API on prior responses.

    sortByContentName?: string

    Sort by ascending or descending content name.

    sortByDate?: string

    Sort by ascending or descending date updated.