SongGuess
    Preparing search index...

    Interface ArtifactsCreateTokenResult

    Result of creating an access token.

    interface ArtifactsCreateTokenResult {
        expiresAt: string;
        id: string;
        plaintext: string;
        scope: "read" | "write";
    }
    Index

    Properties

    expiresAt: string

    ISO 8601 token expiry timestamp.

    id: string

    Unique token ID.

    plaintext: string

    Plaintext token (only returned at creation time).

    scope: "read" | "write"

    Token scope: "read" or "write".