fetch('/api/deleteReport', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({ id: 'Report_ID' , apiKey: 'YOUR_API_KEY' }),
});
200
Static API Documentation
Delete Report
Delete a Report.
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
string
Your API Key. (Keep this secret!)
string
The ID of the report you would like to delete.
Response
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
Was this page helpful?
