monitor.contact.unbind |
Unbind a contact from a monitor. This contact does not receive alerts from this monitor anymore. Authentication & ActionThis method needs authentication. It can be accessed by http and https. Action type: HTTP POST. Arguments
monitor_id (required, see note 1) The id of an existing monitor. Should be an integer. monitor_name (required, see note 1) The name of an existing monitor. Should be a string of max 64 chars. contact_id (required, see note 2) The id of an existing contact. Should be an integer. contact_name (required, see note 2) The name of an existing contact. Should be a string of max 64 chars.
NOTE 1: For ease of use, it is possible to use both monitor_id and monitor_name as a key. If both are present, the monitor_id is taken as the key.
NOTE 2: For ease of use, it is possible to use both contact_id and contact_name as a key. If both are present, the contact_id is taken as the key. Example Requesthttp://api.webcron.org/monitor.contact.unbind
contact_id=1983&monitor_id=52319
Example Response<rsp status="ok" /> |