NodePing.Notificationprofiles.delete

You're seeing just the function delete, go back to NodePing.Notificationprofiles module for more information.

Specs

delete(token :: bitstring(), id :: bitstring()) :: tuple()

Delete a notification profile from the account

Parameters

  • token - NodePing API token that is provided with account
  • id - the ID for the notification profile being updated

Examples

iex> token = System.fetch_env!("TOKEN")
iex> id = "201205050153W2Q4C-P-3QJWG"
iex> {:ok, result} = NodePing.Notificationprofiles.delete(token, id)
Link to this function

delete(token, id, customerid)

View Source

Specs

delete(token :: bitstring(), id :: bitstring(), customerid :: bitstring()) ::
  tuple()

Delete a notification profile from the account

Parameters

  • token - NodePing API token that is provided with account
  • id - the ID for the notification profile being updated

Examples

iex> token = System.fetch_env!("TOKEN")
iex> customerid = System.fetch_env!("CUSTOMERID")
iex> id = "201205050153W2Q4C-P-3QJWG"
iex> {:ok, result} = NodePing.Notificationprofiles.delete(token, id, customerid)