cron.contact.unbind |
Unbind a contact from a cron. This contact does not receive notifications from this cron anymore. Authentication & ActionThis method needs a uthentication. It can be accessed by http and https. Action type: HTTP POST. Argumentscron_id (see note 1) The id of the cron. cron_name (see note 1) The name of the cron. Allowed values: string (255) contact_id(see note 2) The id of a contact. contact_name (see note 2) The name of a contact. Allowed values: string (128)
NOTE 1: For ease of use, it is possible to use both cron_id and cron_name as a key. If both are present, the cron_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/cron.contact.unbind
POST data:
cron_id=154375&contact_name=webmaster Example Response<rsp status="ok" /> |