Skip to main content

account.updateColor

Update the accent color and background custom emoji » of the current account.

func (c *Client) AccountUpdateColor(ctx context.Context, request *AccountUpdateColorRequest) (bool, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.AccountUpdateColor(ctx, &tg.AccountUpdateColorRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // bool
return nil
})

Parameters

NameTypeRequiredDescription
ForProfileboolWhether to change the accent color emoji pattern of the profile page; otherwise, the accent color and emoji pattern of messages will be changed.
ColorPeerColorClassID of the accent color palette » to use (not RGB24, see here » for more info).

Returns

bool

Possible errors

CodeTypeDescription
400COLOR_INVALIDThe specified color palette ID was invalid.
400DOCUMENT_INVALIDThe specified document is invalid.
403PREMIUM_ACCOUNT_REQUIREDA premium account is required to execute this action.

References