//native
type Digitalocean = {
token: string;
};
/**
* Delete a Check
* To delete an Uptime check, send a DELETE request to `/v2/uptime/checks/$CHECK_ID`. A 204 status
code with no body will be returned in response to a successful request.
Deleting a check will also delete alerts associated with the check.
*/
export async function main(auth: Digitalocean, check_id: string) {
const url = new URL(
`https://api.digitalocean.com/v2/uptime/checks/${check_id}`,
);
const response = await fetch(url, {
method: "DELETE",
headers: {
Authorization: "Bearer " + auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 536 days ago