Skip to content

Latest commit

 

History

History
116 lines (78 loc) · 4.5 KB

BreathingRateApi.md

File metadata and controls

116 lines (78 loc) · 4.5 KB

fitbit_web_api.BreathingRateApi

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

Method HTTP request Description
get_breathing_rate_summary_by_date GET /1/user/-/br/date/{date}.json Get Breathing Rate Summary by Date
get_breathing_rate_summary_by_interval GET /1/user/-/br/date/{startDate}/{endDate}.json Get Breathing Rate Summary by Interval

get_breathing_rate_summary_by_date

get_breathing_rate_summary_by_date(_date)

Get Breathing Rate Summary by Date

This endpoint returns average breathing rate data for a single date. Breathing Rate data applies specifically to a user’s “main sleep,” which is the longest single period of time during which they were 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.BreathingRateApi(fitbit_web_api.ApiClient(configuration))
_date = '2013-10-20' # date | The date in the format of yyyy-MM-dd or today.

try:
    # Get Breathing Rate Summary by Date
    api_instance.get_breathing_rate_summary_by_date(_date)
except ApiException as e:
    print("Exception when calling BreathingRateApi->get_breathing_rate_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_breathing_rate_summary_by_interval

get_breathing_rate_summary_by_interval(start_date, end_date)

Get Breathing Rate Summary by Interval

This endpoint returns average breathing rate data for a date range. Breathing Rate data applies specifically to a user’s “main sleep,” which is the longest single period of time during which they were 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.BreathingRateApi(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 Breathing Rate Summary by Interval
    api_instance.get_breathing_rate_summary_by_interval(start_date, end_date)
except ApiException as e:
    print("Exception when calling BreathingRateApi->get_breathing_rate_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]