ExDoppler.Invites (ExDoppler v1.0.1)
View SourceModule for interacting with ExDoppler.Invite
๐ Resources
- ๐ Doppler docs
- ๐ Doppler API docs
- ๐ฌ Contact the maintainer (he's happy to help!)
Summary
Functions
Same as list_invites/1
but won't wrap a successful response in {:ok, response}
Functions
Lists ExDoppler.Invite
๐ท๏ธ Params
- opts: Optional modifications to the list call
- page - which page to list (starts at 1) (e.g
page: 2
). Default:1
- per_page - the number of
ExDoppler.Invite
to return for this page (e.gper_page: 50
). Default:20
- page - which page to list (starts at 1) (e.g
โคต๏ธ Returns
โ On Success
{:ok, [%ExDoppler.Invite{...}]}
โ On Failure
{:error, err}
๐ป Examples
iex> alias ExDoppler.Invites
iex> {:ok, _invites} = Invites.list_invites()
๐ Resources
- ๐ Doppler API docs
- ๐ฌ Contact the maintainer (he's happy to help!)
Same as list_invites/1
but won't wrap a successful response in {:ok, response}