@shortcut/client
    Preparing search index...

    Interface ShortcutOAuthTokens

    The authorization-code exchange response. permission_id is the agent's own member id in the workspace.

    interface ShortcutOAuthTokens {
        access_token: string;
        access_token_expires_at: string;
        permission_id: string;
        refresh_token: string;
        scope?: string;
        token_type?: string;
        workspace2_id: string;
        workspace2_slug: string;
    }
    Index

    Properties

    access_token: string
    access_token_expires_at: string

    ISO 8601. Refresh before this.

    permission_id: string

    The agent's member id, as it appears in actor.member_id on deliveries it causes.

    refresh_token: string
    scope?: string

    Space-separated granted scopes, when reported.

    token_type?: string
    workspace2_id: string
    workspace2_slug: string