https://api.visitors.now/v1/projects/:idDeletes a project by ID.
const res = await fetch("https://api.visitors.now/v1/projects/fe14d7a2-0f3f-4dc4-9c0b-6f4a49f5c751", {
method: "DELETE",
headers: { Authorization: `Bearer ${VISITORS_USER_API_KEY}` },
});
const result = await res.json();The UUID of the project to delete.
{
"deleted": true
}