Delete Custom Data Source
curl --request DELETE \
--url https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}"
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/custom-data-sources/{id_or_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Custom Data Sources
Delete Custom Data Source
Drop the backing table and the metadata row.
DELETE
/
api
/
v1
/
custom-data-sources
/
{id_or_slug}
Delete Custom Data Source
curl --request DELETE \
--url https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug} \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/custom-data-sources/{id_or_slug}"
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/custom-data-sources/{id_or_slug}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));