DELETE
/
v0
/
project
/
favorites
/
{id}
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/favorites/<id>' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Favorite deleted successfully!"
}
Deletes a specific favorite project.

Authorizations

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

Path Parameters

id
integer
required
The ID of the favorite to delete
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/favorites/<id>' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Favorite deleted successfully!"
}