Liking cljdoc? Tell your friends :D

happygapi.fitness.users

Fitness: users. Stores and accesses user data in the fitness store from apps on any platform. See: https://developers.google.com/fit/rest/api/reference/rest/v1/users

Fitness: users.
Stores and accesses user data in the fitness store from apps on any platform.
See: https://developers.google.com/fit/rest/api/reference/rest/v1/users
raw docstring

dataset-aggregate$clj

(dataset-aggregate$ auth parameters body)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataset/aggregate

Required parameters: userId

Optional parameters: none

Body:

{:aggregateBy [{:dataSourceId string, :dataTypeName string}], :bucketByActivitySegment {:activityDataSourceId string, :minDurationMillis string}, :bucketByActivityType {:activityDataSourceId string, :minDurationMillis string}, :bucketBySession {:minDurationMillis string}, :bucketByTime {:durationMillis string, :period BucketByTimePeriod}, :endTimeMillis string, :filteredDataQualityStandard [string], :startTimeMillis string}

Aggregates data of a certain type or stream into buckets divided by a given type of boundary. Multiple data sets of multiple types and from multiple sources can be aggregated into exactly one bucket type per request.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataset/aggregate

Required parameters: userId

Optional parameters: none

Body: 

{:aggregateBy [{:dataSourceId string, :dataTypeName string}],
 :bucketByActivitySegment {:activityDataSourceId string,
                           :minDurationMillis string},
 :bucketByActivityType {:activityDataSourceId string,
                        :minDurationMillis string},
 :bucketBySession {:minDurationMillis string},
 :bucketByTime {:durationMillis string, :period BucketByTimePeriod},
 :endTimeMillis string,
 :filteredDataQualityStandard [string],
 :startTimeMillis string}

Aggregates data of a certain type or stream into buckets divided by a given type of boundary. Multiple data sets of multiple types and from multiple sources can be aggregated into exactly one bucket type per request.
sourceraw docstring

dataSources-create$clj

(dataSources-create$ auth parameters body)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/create

Required parameters: userId

Optional parameters: none

Body:

{:application {:detailsUrl string, :name string, :packageName string, :version string}, :dataQualityStandard [string], :dataStreamId string, :dataStreamName string, :dataType {:field [DataTypeField], :name string}, :device {:manufacturer string, :model string, :type string, :uid string, :version string}, :name string, :type string}

Creates a new data source that is unique across all data sources belonging to this user.

A data source is a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point in every dataset inserted into or read from the Fitness API has an associated data source.

Each data source produces a unique stream of dataset updates, with a unique data source identifier. Not all changes to data source affect the data stream ID, so that data collected by updated versions of the same application/device can still be considered to belong to the same data source.

Data sources are identified using a string generated by the server, based on the contents of the source being created. The dataStreamId field should not be set when invoking this method. It will be automatically generated by the server with the correct format. If a dataStreamId is set, it must match the format that the server would generate. This format is a combination of some fields from the data source, and has a specific order. If it doesn't match, the request will fail with an error.

Specifying a DataType which is not a known type (beginning with "com.google.") will create a DataSource with a custom data type. Custom data types are only readable by the application that created them. Custom data types are deprecated; use standard data types instead.

In addition to the data source fields included in the data source ID, the developer project number that is authenticated when creating the data source is included. This developer project number is obfuscated when read by any other developer reading public data types.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/create

Required parameters: userId

Optional parameters: none

Body: 

{:application {:detailsUrl string,
               :name string,
               :packageName string,
               :version string},
 :dataQualityStandard [string],
 :dataStreamId string,
 :dataStreamName string,
 :dataType {:field [DataTypeField], :name string},
 :device {:manufacturer string,
          :model string,
          :type string,
          :uid string,
          :version string},
 :name string,
 :type string}

Creates a new data source that is unique across all data sources belonging to this user.

A data source is a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point in every dataset inserted into or read from the Fitness API has an associated data source.

Each data source produces a unique stream of dataset updates, with a unique data source identifier. Not all changes to data source affect the data stream ID, so that data collected by updated versions of the same application/device can still be considered to belong to the same data source.

Data sources are identified using a string generated by the server, based on the contents of the source being created. The dataStreamId field should not be set when invoking this method. It will be automatically generated by the server with the correct format. If a dataStreamId is set, it must match the format that the server would generate. This format is a combination of some fields from the data source, and has a specific order. If it doesn't match, the request will fail with an error.

Specifying a DataType which is not a known type (beginning with "com.google.") will create a DataSource with a custom data type. Custom data types are only readable by the application that created them. Custom data types are deprecated; use standard data types instead.

In addition to the data source fields included in the data source ID, the developer project number that is authenticated when creating the data source is included. This developer project number is obfuscated when read by any other developer reading public data types.
sourceraw docstring

dataSources-dataPointChanges-list$clj

(dataSources-dataPointChanges-list$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/dataPointChanges/list

Required parameters: dataSourceId, userId

Optional parameters: limit, pageToken

Queries for user's data point changes for a particular data source.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/dataPointChanges/list

Required parameters: dataSourceId, userId

Optional parameters: limit, pageToken

Queries for user's data point changes for a particular data source.
sourceraw docstring

dataSources-datasets-delete$clj

(dataSources-datasets-delete$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/delete

Required parameters: dataSourceId, datasetId, userId

Optional parameters: currentTimeMillis, modifiedTimeMillis

Performs an inclusive delete of all data points whose start and end times have any overlap with the time range specified by the dataset ID. For most data types, the entire data point will be deleted. For data types where the time span represents a consistent value (such as com.google.activity.segment), and a data point straddles either end point of the dataset, only the overlapping portion of the data point will be deleted.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/delete

Required parameters: dataSourceId, datasetId, userId

Optional parameters: currentTimeMillis, modifiedTimeMillis

Performs an inclusive delete of all data points whose start and end times have any overlap with the time range specified by the dataset ID. For most data types, the entire data point will be deleted. For data types where the time span represents a consistent value (such as com.google.activity.segment), and a data point straddles either end point of the dataset, only the overlapping portion of the data point will be deleted.
sourceraw docstring

dataSources-datasets-get$clj

(dataSources-datasets-get$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/get

Required parameters: dataSourceId, datasetId, userId

Optional parameters: limit, pageToken

Returns a dataset containing all data points whose start and end times overlap with the specified range of the dataset minimum start time and maximum end time. Specifically, any data point whose start time is less than or equal to the dataset end time and whose end time is greater than or equal to the dataset start time.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/get

Required parameters: dataSourceId, datasetId, userId

Optional parameters: limit, pageToken

Returns a dataset containing all data points whose start and end times overlap with the specified range of the dataset minimum start time and maximum end time. Specifically, any data point whose start time is less than or equal to the dataset end time and whose end time is greater than or equal to the dataset start time.
sourceraw docstring

dataSources-datasets-patch$clj

(dataSources-datasets-patch$ auth parameters body)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/patch

Required parameters: dataSourceId, datasetId, userId

Optional parameters: currentTimeMillis

Body:

{:dataSourceId string, :maxEndTimeNs string, :minStartTimeNs string, :nextPageToken string, :point [{:computationTimeMillis string, :dataTypeName string, :endTimeNanos string, :modifiedTimeMillis string, :originDataSourceId string, :rawTimestampNanos string, :startTimeNanos string, :value [Value]}]}

Adds data points to a dataset. The dataset need not be previously created. All points within the given dataset will be returned with subsquent calls to retrieve this dataset. Data points can belong to more than one dataset. This method does not use patch semantics.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/datasets/patch

Required parameters: dataSourceId, datasetId, userId

Optional parameters: currentTimeMillis

Body: 

{:dataSourceId string,
 :maxEndTimeNs string,
 :minStartTimeNs string,
 :nextPageToken string,
 :point [{:computationTimeMillis string,
          :dataTypeName string,
          :endTimeNanos string,
          :modifiedTimeMillis string,
          :originDataSourceId string,
          :rawTimestampNanos string,
          :startTimeNanos string,
          :value [Value]}]}

Adds data points to a dataset. The dataset need not be previously created. All points within the given dataset will be returned with subsquent calls to retrieve this dataset. Data points can belong to more than one dataset. This method does not use patch semantics.
sourceraw docstring

dataSources-delete$clj

(dataSources-delete$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/delete

Required parameters: dataSourceId, userId

Optional parameters: none

Deletes the specified data source. The request will fail if the data source contains any data points.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/delete

Required parameters: dataSourceId, userId

Optional parameters: none

Deletes the specified data source. The request will fail if the data source contains any data points.
sourceraw docstring

dataSources-get$clj

(dataSources-get$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/get

Required parameters: dataSourceId, userId

Optional parameters: none

Returns the specified data source.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/get

Required parameters: dataSourceId, userId

Optional parameters: none

Returns the specified data source.
sourceraw docstring

dataSources-list$clj

(dataSources-list$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/list

Required parameters: userId

Optional parameters: dataTypeName

Lists all data sources that are visible to the developer, using the OAuth scopes provided. The list is not exhaustive; the user may have private data sources that are only visible to other developers, or calls using other scopes.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/list

Required parameters: userId

Optional parameters: dataTypeName

Lists all data sources that are visible to the developer, using the OAuth scopes provided. The list is not exhaustive; the user may have private data sources that are only visible to other developers, or calls using other scopes.
sourceraw docstring

dataSources-update$clj

(dataSources-update$ auth parameters body)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/update

Required parameters: dataSourceId, userId

Optional parameters: none

Body:

{:application {:detailsUrl string, :name string, :packageName string, :version string}, :dataQualityStandard [string], :dataStreamId string, :dataStreamName string, :dataType {:field [DataTypeField], :name string}, :device {:manufacturer string, :model string, :type string, :uid string, :version string}, :name string, :type string}

Updates the specified data source. The dataStreamId, dataType, type, dataStreamName, and device properties with the exception of version, cannot be modified.

Data sources are identified by their dataStreamId.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/dataSources/update

Required parameters: dataSourceId, userId

Optional parameters: none

Body: 

{:application {:detailsUrl string,
               :name string,
               :packageName string,
               :version string},
 :dataQualityStandard [string],
 :dataStreamId string,
 :dataStreamName string,
 :dataType {:field [DataTypeField], :name string},
 :device {:manufacturer string,
          :model string,
          :type string,
          :uid string,
          :version string},
 :name string,
 :type string}

Updates the specified data source. The dataStreamId, dataType, type, dataStreamName, and device properties with the exception of version, cannot be modified.

Data sources are identified by their dataStreamId.
sourceraw docstring

sessions-delete$clj

(sessions-delete$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/delete

Required parameters: sessionId, userId

Optional parameters: currentTimeMillis

Deletes a session specified by the given session ID.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/delete

Required parameters: sessionId, userId

Optional parameters: currentTimeMillis

Deletes a session specified by the given session ID.
sourceraw docstring

sessions-list$clj

(sessions-list$ auth parameters)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/list

Required parameters: userId

Optional parameters: activityType, endTime, includeDeleted, pageToken, startTime

Lists sessions previously created.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/list

Required parameters: userId

Optional parameters: activityType, endTime, includeDeleted, pageToken, startTime

Lists sessions previously created.
sourceraw docstring

sessions-update$clj

(sessions-update$ auth parameters body)

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/update

Required parameters: sessionId, userId

Optional parameters: currentTimeMillis

Body:

{:description string, :application {:detailsUrl string, :name string, :packageName string, :version string}, :name string, :endTimeMillis string, :activityType integer, :modifiedTimeMillis string, :id string, :startTimeMillis string, :activeTimeMillis string}

Updates or insert a given session.

https://developers.google.com/fit/rest/api/reference/rest/v1/users/sessions/update

Required parameters: sessionId, userId

Optional parameters: currentTimeMillis

Body: 

{:description string,
 :application {:detailsUrl string,
               :name string,
               :packageName string,
               :version string},
 :name string,
 :endTimeMillis string,
 :activityType integer,
 :modifiedTimeMillis string,
 :id string,
 :startTimeMillis string,
 :activeTimeMillis string}

Updates or insert a given session.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close