curl --request POST \
--url https://api.getcargo.io/v1/expression/favoriteRecipes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"recipeUuid": "<string>"
}
'{
"favoriteRecipe": {
"userUuid": "<string>",
"workspaceUuid": "<string>",
"recipeUuid": "<string>",
"createdAt": "<string>",
"archivedAt": "<string>"
}
}Add a recipe to favorites
curl --request POST \
--url https://api.getcargo.io/v1/expression/favoriteRecipes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"recipeUuid": "<string>"
}
'{
"favoriteRecipe": {
"userUuid": "<string>",
"workspaceUuid": "<string>",
"recipeUuid": "<string>",
"createdAt": "<string>",
"archivedAt": "<string>"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Request body schema.
Recipe identifier to favorite.
Successful response
Favorite recipe details.
Show child attributes
Was this page helpful?