DELETE
/
v0
/
tile
/
curl --request DELETE \
  --url 'https://api.unify.ai/v0/tile/?tile_id=None&tab_id=None&name=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Tile deleted successfully"
}

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

tile_id
string | null
The ID of the tile to delete
tab_id
string | null
The tab ID the tile belongs to
name
string | null
The name of the tile to delete
curl --request DELETE \
  --url 'https://api.unify.ai/v0/tile/?tile_id=None&tab_id=None&name=None' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Tile deleted successfully"
}