From e811a154749a044f45d3c5b60827c6e4a2dc9d8f Mon Sep 17 00:00:00 2001 From: unowhat Date: Sun, 26 Sep 2021 13:14:38 -0700 Subject: [PATCH] Update api.py --- fitbit/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fitbit/api.py b/fitbit/api.py index 1b458b1..94db547 100644 --- a/fitbit/api.py +++ b/fitbit/api.py @@ -801,7 +801,7 @@ def get_sleep(self, date): https://dev.fitbit.com/docs/sleep/#get-sleep-logs date should be a datetime.date object. """ - url = "{0}/{1}/user/-/sleep/date/{year}-{month}-{day}.json".format( + url = "{0}/1.2/user/-/sleep/date/{year}-{month}-{day}.json".format( *self._get_common_args(), year=date.year, month=date.month,