Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketCreatedAccessToken

    An access token as returned at creation time.

    The raw token secret is only ever returned by the create endpoint — store it immediately, it cannot be retrieved again.

    interface BitbucketCreatedAccessToken {
        createdDate?: number;
        expiryDate?: number;
        id: string;
        lastAuthenticated?: number;
        name: string;
        permissions: string[];
        token: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdDate?: number
    expiryDate?: number
    id: string
    lastAuthenticated?: number
    name: string
    permissions: string[]

    Permissions granted to the token (e.g. ['REPO_READ', 'PROJECT_READ'])

    token: string

    The raw token secret