Delete Coverage Referential
curl --request DELETE \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"object": "deleted",
"deleted": true
}Coverage
Delete Coverage Referential
Delete a coverage referential and everything attached to it.
DELETE
/
api
/
v1
/
coverage
/
referentials
/
{referential_id}
Delete Coverage Referential
curl --request DELETE \
--url https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}"
headers = {"X-API-Key": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/coverage/referentials/{referential_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"id": "<string>",
"object": "deleted",
"deleted": true
}