AI-generated Key Takeaways
-
Deletes a user's fitness session based on the provided session ID.
-
Requires authorization with the
https://www.googleapis.com/auth/fitness.activity.write
scope. -
Uses a DELETE request to the specified endpoint with session and user IDs as path parameters.
-
The request body should be empty, and a successful deletion returns an empty response body.
Deletes a session specified by the given session ID. Try it now.
Request
HTTP request
DELETE https://www.googleapis.com/fitness/v1/users/userId/sessions/sessionId
Parameters
Parameter name | Value | Description |
---|---|---|
Path parameters | ||
sessionId |
string |
The ID of the session to be deleted. |
userId |
string |
Delete a session for the person identified. Use me to indicate
the authenticated user. Only me is supported at this time.
|
Authorization
This request requires authorization with the following scope:
Scope |
---|
https://www.googleapis.com/auth/fitness.activity.write |
For more information, see the authentication and authorization page.
Request body
Do not supply a request body with this method.
Response
If successful, this method returns an empty response body.
Try it!
Use the APIs Explorer below to call this method on live data and see the response.