Bitbucket Data Center API Client
    Preparing search index...

    Interface UpdateProjectData

    Payload for PUT /rest/api/latest/projects/{key}.

    Per the official schema, name, public, type, and id are read-only on this endpoint — attempting to change them has no effect. Only the avatar and (nominally) key/links are writable.

    interface UpdateProjectData {
        avatar?: string;
        avatarUrl?: string;
        key?: string;
        links?: Record<string, unknown>;
    }
    Index

    Properties

    avatar?: string

    Base64-encoded avatar image as a data URI, e.g. data:image/png;base64,...

    avatarUrl?: string
    key?: string
    links?: Record<string, unknown>