NodePing.Notificationprofiles.get-exclamation-mark

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

Specs

get!(token :: bitstring()) :: map()

Get a list of notification profiles for the subaccount

Parameters

  • token - NodePing API token that is provided with account

Examples

iex> token = System.fetch_env!("TOKEN")
iex> result = NodePing.Notificationprofiles.get(token)

Specs

get!(token :: bitstring(), customerid :: bitstring()) :: map()

Get a list of notification profiles for the subaccount

Parameters

  • token - NodePing API token that is provided with account
  • customerid - optional ID to access a subaccount

Examples

iex> token = System.fetch_env!("TOKEN")
iex> customerid = System.fetch_env!("CUSTOMERID")
iex> result = NodePing.Notificationprofiles.get(token, customerid)