curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": 1,
"project": "my-project",
"icon": "star",
"position": 0
},
{
"id": 2,
"project": "another-project",
"icon": "folder",
"position": 1
}
]
curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": 1,
"project": "my-project",
"icon": "star",
"position": 0
},
{
"id": 2,
"project": "another-project",
"icon": "folder",
"position": 1
}
]
Bearer <token>
, where <token>
is your auth token.curl --request GET \
--url 'https://api.unify.ai/v0/project/favorites' \
--header "Authorization: Bearer $UNIFY_KEY"
[
{
"id": 1,
"project": "my-project",
"icon": "star",
"position": 0
},
{
"id": 2,
"project": "another-project",
"icon": "folder",
"position": 1
}
]