@archastro/sdk
    Preparing search index...

    Interface SlackDeliveryOutcomeListResponse

    A page of delivery outcomes for one Slack channel, newest first. Page through history with the returned cursors; since and outcome are filters, not paging controls.

    interface SlackDeliveryOutcomeListResponse {
        after_cursor?: string;
        before_cursor?: string;
        data: SlackDeliveryOutcome[];
        has_more: boolean;
    }
    Index

    Properties

    after_cursor?: string

    Opaque cursor for the page of newer outcomes. Pass back as after_cursor to poll for attempts recorded since. null when the page is empty.

    before_cursor?: string

    Opaque cursor for the page of older outcomes. Pass back as before_cursor to continue into history. null when the page is empty.

    Delivery outcomes matching the query, newest attempt first.

    has_more: boolean

    True when more outcomes exist beyond this page.