/dashboards/delete

DELETE https://tezzela.com/api/v1/dasboards/delete

Description

This endpoint deletes a specific dashboard by its id and to (recipient email address). It is used when you want to permanently remove a dashboard from the platform.

The request must be made using the HTTP DELETE method and include the id and to parameters in the request body.

This is useful when:

  • A dashboard is no longer needed.

  • You want to clean up outdated or test dashboards.

  • You're managing dashboards programmatically and need to support deletion.

Request Body

{
    "id": "purchases-dashboard",
    "to": "[email protected]"
}

Response

{
    "operation": "DLT",
    "status": "OK",
    "message": "Delete successfully"
}

Last updated