update_birthday()
- Client.update_birthday()
Update your birthday details.
Usable by Users Bots
- Parameters:
day (
int
) – Day of birth.month (
int
) – Month of birth.year (
int
, optional) – Year of birth.
- Returns:
bool
– True on success.
Example
# Update your birthday to 1st January 2000 # 1874/01/01(YMD) is the earliest date, earlier will raise 400 Bad Request BIRTHDAY_INVALID. await app.update_birthday(day=1, month=1, year=2000)