-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathget_members.Rd
43 lines (40 loc) · 963 Bytes
/
get_members.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/get_members.R
\name{get_members}
\alias{get_members}
\title{Get the current meetup members from a meetup group}
\usage{
get_members(urlname, ..., extra_graphql = NULL, token = meetup_token())
}
\arguments{
\item{urlname}{Character. The name of the group as indicated in the
\url{https://meetup.com} url.}
\item{...}{Should be empty. Used for parameter expansion}
\item{extra_graphql}{A graphql object. Extra objects to return}
\item{token}{Meetup token}
}
\value{
A tibble with the following columns:
\itemize{
\item id
\item name
\item member_url
\item photo_link
\item status
\item role
\item created
\item most_recent_visit
}
}
\description{
Get the current meetup members from a meetup group
}
\examples{
\dontrun{
members <- get_members("rladies-remote")
}
}
\references{
\url{https://www.meetup.com/api/schema/#GroupMembership}
\url{https://www.meetup.com/api/schema/#User}
}