Get the attendees for a specified event

get_event_attendees(id, ..., extra_graphql = NULL, token = meetup_token())

Arguments

id

Required event ID

...

Should be empty. Used for parameter expansion

extra_graphql

A graphql object. Extra objects to return

token

Meetup token

Value

A tibble with the following columns:

  • id

  • name

  • url

  • photo

  • organized_group_count

Examples

if (FALSE) {
attendees <- get_event_attendees(id = "103349942!chp")
}