Skip to content

Latest commit

 

History

History
116 lines (78 loc) · 4.13 KB

SpO2Api.md

File metadata and controls

116 lines (78 loc) · 4.13 KB

fitbit_web_api.SpO2Api

All URIs are relative to https://api.fitbit.com/

Method HTTP request Description
get_sp_o2_summary_by_date GET /1/user/-/spo2/date/{date}.json Get SpO2 Summary by Date
get_sp_o2_summary_by_interval GET /1/user/-/spo2/date/{startDate}/{endDate}.json Get SpO2 Summary by Interval

get_sp_o2_summary_by_date

get_sp_o2_summary_by_date(_date)

Get SpO2 Summary by Date

This endpoint returns the SpO2 summary data for a single date. SpO2 applies specifically to a user’s “main sleep”, which is the longest single period of time asleep on a given date.

Example

from __future__ import print_function
import time
import fitbit_web_api
from fitbit_web_api.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: oauth2
configuration = fitbit_web_api.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = fitbit_web_api.SpO2Api(fitbit_web_api.ApiClient(configuration))
_date = '2013-10-20' # date | The date in the format of yyyy-MM-dd or today.

try:
    # Get SpO2 Summary by Date
    api_instance.get_sp_o2_summary_by_date(_date)
except ApiException as e:
    print("Exception when calling SpO2Api->get_sp_o2_summary_by_date: %s\n" % e)

Parameters

Name Type Description Notes
_date date The date in the format of yyyy-MM-dd or today.

Return type

void (empty response body)

Authorization

oauth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_sp_o2_summary_by_interval

get_sp_o2_summary_by_interval(start_date, end_date)

Get SpO2 Summary by Interval

This endpoint returns the SpO2 summary data for a date range. SpO2 applies specifically to a user’s “main sleep”, which is the longest single period of time asleep on a given date.

Example

from __future__ import print_function
import time
import fitbit_web_api
from fitbit_web_api.rest import ApiException
from pprint import pprint

# Configure OAuth2 access token for authorization: oauth2
configuration = fitbit_web_api.Configuration()
configuration.access_token = 'YOUR_ACCESS_TOKEN'

# create an instance of the API class
api_instance = fitbit_web_api.SpO2Api(fitbit_web_api.ApiClient(configuration))
start_date = '2013-10-20' # date | The date in the format of yyyy-MM-dd or today.
end_date = '2013-10-20' # date | The date in the format of yyyy-MM-dd or today.

try:
    # Get SpO2 Summary by Interval
    api_instance.get_sp_o2_summary_by_interval(start_date, end_date)
except ApiException as e:
    print("Exception when calling SpO2Api->get_sp_o2_summary_by_interval: %s\n" % e)

Parameters

Name Type Description Notes
start_date date The date in the format of yyyy-MM-dd or today.
end_date date The date in the format of yyyy-MM-dd or today.

Return type

void (empty response body)

Authorization

oauth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]