@archastro/sdk
    Preparing search index...

    Interface SlackChannelBindingListResponse

    Paginated list of Slack channel bindings for the requested integration or team. Use the page and per_page fields to navigate pages of results.

    interface SlackChannelBindingListResponse {
        data: SlackChannelBinding[];
        page: number;
        per_page: number;
        total_count: number;
        total_pages: number;
    }
    Index

    Properties

    Array of Slack channel binding objects for the current page.

    page: number

    Current page number (1-indexed).

    per_page: number

    Maximum number of bindings returned per page.

    total_count: number

    Total number of Slack channel bindings matching the query across all pages.

    total_pages: number

    Total number of pages available at the current per_page size.