ClubsApi

All URIs are relative to https://www.strava.com/api/v3

MethodHTTP requestDescription
getclubactivitiesbyidGET /clubs/{id}/activitiesList Club Activities
getclubadminsbyidGET /clubs/{id}/adminsList Club Administrators
getclubby_idGET /clubs/{id}Get Club
getclubmembersbyidGET /clubs/{id}/membersList Club Members
getloggedinathleteclubsGET /athlete/clubsList Athlete Clubs

getclubactivitiesbyid

getclubactivitiesbyid(api::ClubsApi, id::Int64; page=nothing, perpage=nothing, mediaType=nothing) -> Vector{ClubActivity}, OpenAPI.Clients.ApiResponse <br/> getclubactivitiesbyid(api::ClubsApi, responsestream::Channel, id::Int64; page=nothing, perpage=nothing, _mediaType=nothing) -> Channel{ Vector{ClubActivity} }, OpenAPI.Clients.ApiResponse

List Club Activities

Retrieve recent activities from members of a specific club. The authenticated athlete must belong to the requested club in order to hit this endpoint. Pagination is supported. Athlete profile visibility is respected for all activities.

Required Parameters

NameTypeDescriptionNotes
_apiClubsApiAPI context
idInt64The identifier of the club.

Optional Parameters

NameTypeDescriptionNotes
pageInt64Page number. Defaults to 1.[default to nothing]
per_pageInt64Number of items per page. Defaults to 30.[default to 30]

Return type

Vector{ClubActivity}

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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

getclubadminsbyid

getclubadminsbyid(api::ClubsApi, id::Int64; page=nothing, perpage=nothing, mediaType=nothing) -> Vector{SummaryAthlete}, OpenAPI.Clients.ApiResponse <br/> getclubadminsbyid(api::ClubsApi, responsestream::Channel, id::Int64; page=nothing, perpage=nothing, _mediaType=nothing) -> Channel{ Vector{SummaryAthlete} }, OpenAPI.Clients.ApiResponse

List Club Administrators

Returns a list of the administrators of a given club.

Required Parameters

NameTypeDescriptionNotes
_apiClubsApiAPI context
idInt64The identifier of the club.

Optional Parameters

NameTypeDescriptionNotes
pageInt64Page number. Defaults to 1.[default to nothing]
per_pageInt64Number of items per page. Defaults to 30.[default to 30]

Return type

Vector{SummaryAthlete}

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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

getclubby_id

getclubbyid(api::ClubsApi, id::Int64; mediaType=nothing) -> DetailedClub, OpenAPI.Clients.ApiResponse <br/> getclubbyid(api::ClubsApi, responsestream::Channel, id::Int64; _mediaType=nothing) -> Channel{ DetailedClub }, OpenAPI.Clients.ApiResponse

Get Club

Returns a given club using its identifier.

Required Parameters

NameTypeDescriptionNotes
_apiClubsApiAPI context
idInt64The identifier of the club.

Return type

DetailedClub

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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

getclubmembersbyid

getclubmembersbyid(api::ClubsApi, id::Int64; page=nothing, perpage=nothing, mediaType=nothing) -> Vector{ClubAthlete}, OpenAPI.Clients.ApiResponse <br/> getclubmembersbyid(api::ClubsApi, responsestream::Channel, id::Int64; page=nothing, perpage=nothing, _mediaType=nothing) -> Channel{ Vector{ClubAthlete} }, OpenAPI.Clients.ApiResponse

List Club Members

Returns a list of the athletes who are members of a given club.

Required Parameters

NameTypeDescriptionNotes
_apiClubsApiAPI context
idInt64The identifier of the club.

Optional Parameters

NameTypeDescriptionNotes
pageInt64Page number. Defaults to 1.[default to nothing]
per_pageInt64Number of items per page. Defaults to 30.[default to 30]

Return type

Vector{ClubAthlete}

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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

getloggedinathleteclubs

getloggedinathleteclubs(api::ClubsApi; page=nothing, perpage=nothing, mediaType=nothing) -> Vector{SummaryClub}, OpenAPI.Clients.ApiResponse <br/> getloggedinathleteclubs(api::ClubsApi, responsestream::Channel; page=nothing, perpage=nothing, _mediaType=nothing) -> Channel{ Vector{SummaryClub} }, OpenAPI.Clients.ApiResponse

List Athlete Clubs

Returns a list of the clubs whose membership includes the authenticated athlete.

Required Parameters

NameTypeDescriptionNotes
_apiClubsApiAPI context

Optional Parameters

NameTypeDescriptionNotes
pageInt64Page number. Defaults to 1.[default to nothing]
per_pageInt64Number of items per page. Defaults to 30.[default to 30]

Return type

Vector{SummaryClub}

Authorization

strava_oauth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

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