Supprimer un webhook

Delete /settings/webhooks/{id}

Paramètres dans l'URL :

Nom Description Type Obligatoire
id Id du webhook String Oui

Réponse :

Nom Description Type
Code réponse 200 OK Code réponse Http
Langage de programmation :

Exemple de réponse :

								Pas de réponse json
							

Exemple de code :

								curl -X DELETE -H "X-Tipimail-ApiUser:YOUR_SMTP_USERNAME" -H "X-Tipimail-ApiKey:YOUR_SMTP_KEY" https://api.tipimail.com/v1/settings/webhooks/f4re5f5re4gre7gre8g87g58
							
require 'vendor/autoload.php';

$tipimail = new Tipimail\Tipimail('YOUR_SMTP_USERNAME', 'YOUR_API_KEY');

try {
	
	$tipimail->getSettingsService()->getWebhooksService()->delete('646r54g6r4gr6g46g46546d4');
		
}
catch(Tipimail\Exceptions\TipimailException $e) {
	echo 'Exception received :', $e->getMessage(), "\n";
	
}