NodePing.Notificationprofiles.delete-exclamation-mark

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

Specs

delete!(token :: bitstring(), id :: bitstring()) :: map()

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> result = NodePing.Notificationprofiles.delete!(token, id)
Link to this function

delete!(token, id, customerid)

View Source

Specs

delete!(token :: bitstring(), id :: bitstring(), customerid :: bitstring()) ::
  map()

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> result = NodePing.Notificationprofiles.delete!(token, id, customerid)