meetup v0.1.1 Meetup.V3.Photos

Handles endpoints related to meetup photos.

Link to this section Summary

Functions

Creates a new photo comment. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/comments/#post

Lists photo comments associated with a photo

Deletes a specified event photo

Edits photo details. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/#edit

Lists of all photos uploaded for the group. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photos/#list

Lists photos for a given event. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/#list

Deletes a member photo by id

Support for uploading new Member photos. For available params, see: https://www.meetup.com/meetup_api/docs/members/:member_id/photos/#post

Gets information about a specific photo album. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/

Support for uploading new album photos. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/photos/#upload

Lists photos for a given photo album. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/photos/#list

Gets a list a group photo albums in ascending order based on the time they were created. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/

Gets information about a specific photo. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/#get

Support for uploading new Event photos. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/#upload

Link to this section Functions

Link to this function comment(urlname, event_id, photo_id, params)
comment(String.t(), String.t(), integer(), map()) :: tuple()

Creates a new photo comment. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/comments/#post

Link to this function comments(urlname, event_id, photo_id)
comments(String.t(), String.t(), integer()) :: tuple()

Lists photo comments associated with a photo.

Link to this function delete(urlname, event_id, photo_id)
delete(String.t(), String.t(), integer()) :: tuple()

Deletes a specified event photo.

Link to this function delete_comment(urlname, event_id, photo_id, comment_id)
delete_comment(String.t(), String.t(), integer(), integer()) :: tuple()

Deletes photo comments.

Link to this function edit(urlname, event_id, photo_id, params)
edit(String.t(), String.t(), integer(), map()) :: tuple()

Edits photo details. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/#edit

Link to this function group_index(urlname, params)
group_index(String.t(), map()) :: tuple()

Lists of all photos uploaded for the group. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photos/#list

Link to this function index(urlname, event_id, params)
index(String.t(), String.t(), map()) :: tuple()

Lists photos for a given event. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/#list

Link to this function member_photo_delete(member_id, photo_id)
member_photo_delete(integer(), integer()) :: tuple()

Deletes a member photo by id.

Link to this function member_photo_upload(member_id, params)
member_photo_upload(integer(), map()) :: tuple()

Support for uploading new Member photos. For available params, see: https://www.meetup.com/meetup_api/docs/members/:member_id/photos/#post

Link to this function photo_album(urlname, album_id, params)
photo_album(String.t(), integer(), map()) :: tuple()

Gets information about a specific photo album. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/

Link to this function photo_album_photo_upload(urlname, album_id, params)
photo_album_photo_upload(String.t(), integer(), map()) :: tuple()

Support for uploading new album photos. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/photos/#upload

Link to this function photo_album_photos(urlname, album_id, params)
photo_album_photos(String.t(), integer(), map()) :: tuple()

Lists photos for a given photo album. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/:album_id/photos/#list

Link to this function photo_albums(urlname, params)
photo_albums(String.t(), map()) :: tuple()

Gets a list a group photo albums in ascending order based on the time they were created. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/photo_albums/

Link to this function show(urlname, event_id, photo_id, params)
show(String.t(), String.t(), integer(), map()) :: tuple()

Gets information about a specific photo. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/:photo_id/#get

Link to this function upload(urlname, event_id, params)
upload(String.t(), String.t(), map()) :: tuple()

Support for uploading new Event photos. For available params, see: https://www.meetup.com/meetup_api/docs/:urlname/events/:event_id/photos/#upload