Description Usage Arguments Value See Also Examples
View source: R/R6_get_segment_effort_streams.R
Returns a set of streams for a segment effort completed by the authenticated athlete. Requires read_all scope.
1 2 3 4 5  | get_segment_effort_streams(
  mbr_object = NULL,
  effort_id = NULL,
  streams_types = NULL
)
 | 
effort_id | 
 The identifier of the segment effort.  | 
streams_types | 
 vector of esired stream types. May take the following values: "time", "latlng", "distance", "altitude", "velocity_smooth", "heartrate", "cadence", "watts", "temp", "moving", "grade_smooth"  | 
my_segment_effort_streams as list with streams details
https://developers.strava.com/docs/reference/#api-Streams-getSegmentEffortStreams
1 2 3 4 5 6 7 8 9  | ## Not run: 
# my_mbr is a mountainbikeR object
my_mbr$get_segment_effort_streams(
     effort_id = 12345
     , streams_types = c("heartrate","distance")
)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.