From d468bd6af65d279979fa0a4736caf791c18347ee Mon Sep 17 00:00:00 2001 From: unowhat Date: Sat, 25 Sep 2021 14:56:13 -0700 Subject: [PATCH] Update api.py The version of sleep endpoint is now 1.2 instead of 1 (with other endpoints inchanged). Please see detail on https://dev.fitbit.com/build/reference/web-api/sleep-v1/ --- 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,