auth0_ex v0.3.2 Auth0Ex.Management.EmailProvider View Source
A module representing emails resource on Auth0
Link to this section Summary
Functions
Configures the email provider
Deletes the email provider
Gets the email provider
Updates the email provider
Link to this section Functions
Link to this function
configure(body) View Source
Configures the email provider
iex> Auth0Ex.Management.EmailProvider.configure(name: "mandrill", enabled: true)
Link to this function
delete() View Source
Deletes the email provider
iex> Auth0Ex.Management.EmailProvider.delete()
Link to this function
get(params \\ %{}) View Source
Gets the email provider
iex> Auth0Ex.Management.EmailProvider.get()
iex> Auth0Ex.Management.EmailProvider.get(fields: "name,enabled")
Link to this function
update(body) View Source
Updates the email provider
iex> Auth0Ex.Management.EmailProvider.update(name: "new_name")