Suppprimer un domaine
Delete /settings/domains/{sending}
Paramètres dans l'URL :
Nom | Description | Type | Obligatoire |
---|---|---|---|
sending | Nom de domaine avec l'extension | String | Oui |
Réponse :
Nom | Description | Type |
---|---|---|
Response Code | 200 OK | Http Status Code |
Langage de programmation :
Exemple de réponse :
Pas de réponse json
Exemple de code :
curl -X DELETE -H "Content-Type: application/json" -H "X-Tipimail-ApiUser:YOUR_SMTP_USERNAME" -H "X-Tipimail-ApiKey:YOUR_SMTP_KEY" https://api.tipimail.com/v1/settings/domains/example.com
require 'vendor/autoload.php'; $tipimail = new Tipimail\Tipimail('YOUR_SMTP_USERNAME', 'YOUR_API_KEY'); try { $tipimail->getSettingsService()->getDomainsService()->delete('example.com'); } catch(Tipimail\Exceptions\TipimailException $e) { echo 'Exception received :', $e->getMessage(), "\n"; }