Current section
Files
Jump to
Current section
Files
lib/v3/batch.ex
defmodule Meetup.V3.Batch do
@moduledoc """
Performs multiple API requests in batch, useful for reducing HTTP network requests.
This method is only available for OAuth authentication
"""
@doc """
For details, see:
https://www.meetup.com/meetup_api/docs/batch/
"""
@spec batch() :: tuple()
def batch do
path = "batch"
Meetup.post(path, %{})
end
end