POST
/
api
/
deleteReport
fetch('/api/deleteReport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({ id: 'Report_ID' , apiKey: 'YOUR_API_KEY' }),
  });
200

Body

apiKey
string

Your API Key. (Keep this secret!)

id
string

The ID of the report you would like to delete.

Response

Status
number

Returns 200 if successful.

fetch('/api/deleteReport', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({ id: 'Report_ID' , apiKey: 'YOUR_API_KEY' }),
  });
200