Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Latest commit

 

History

History
37 lines (24 loc) · 650 Bytes

deleteDomainsDomainId.md

File metadata and controls

37 lines (24 loc) · 650 Bytes

{% method %}

DELETE domain

This will delete a domain

Request URL

DELETEhttps://api.catapult.inetwork.com/v1/users/{userId}/domains/{domaidId}

{% common %}

Example 1 of 1: Delete a domain

{% 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 %}