{% method %}
This will delete a domain
DELETE
https://api.catapult.inetwork.com/v1/users/{userId}/domains/{domaidId}
{% common %}
{% sample lang="bash" %}
curl -v -X DELETE https://api.catapult.inetwork.com/v1/users/{userId}/domains/{domain-id} -u {token}:{secret} -H "Content-type: application/json"
client.Domain.delete("{domain-id}")
.then(function () {});
{% sample lang="csharp" %}
await client.Domain.DeleteAsync("{domainId1}");
{% sample lang="ruby" %}
domain.delete()
{% endmethod %}