Documentation - v1.6.0-beta.24
    Preparing search index...

    Standard response envelope returned by the Slack Web API.

    interface SlackResponse {
        error?: string;
        ok: boolean;
        ts?: string;
        warning?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    error?: string

    Error code string when ok is false.

    ok: boolean

    Whether the API call succeeded.

    ts?: string

    Timestamp of a created or updated message.

    warning?: string

    Non-fatal warning string.