masto
    Preparing search index...

    Interface UpdateCredentialsParams

    interface UpdateCredentialsParams {
        avatar?: string | Blob | null;
        bot?: boolean;
        discoverable?: boolean;
        displayName?: string | null;
        fieldsAttributes?: AccountField[] | null;
        header?: string | Blob | null;
        hideCollections?: boolean | null;
        locked?: boolean | null;
        note?: string | null;
        source?:
            | Partial<Pick<AccountSource, "sensitive" | "language" | "privacy">>
            | null;
    }
    Index

    Properties

    avatar?: string | Blob | null

    Avatar image encoded using multipart/form-data

    bot?: boolean

    Whether the account has a bot flag.

    discoverable?: boolean

    Whether the account should be shown in the profile directory.

    displayName?: string | null

    The display name to use for the profile.

    fieldsAttributes?: AccountField[] | null

    Profile metadata name and value. (By default, max 4 fields and 255 characters per property/value)

    header?: string | Blob | null

    Header image encoded using multipart/form-data

    hideCollections?: boolean | null

    Whether you want to hide followers and followings on your profile

    locked?: boolean | null

    Whether manual approval of follow requests is required.

    note?: string | null

    The account bio.

    source?:
        | Partial<Pick<AccountSource, "sensitive" | "language" | "privacy">>
        | null