Skip to main content
POST
/
expression
/
favoriteRecipes
Create favorite recipe
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>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request body schema.

recipeUuid
string
required

Recipe identifier to favorite.

Response

Successful response

favoriteRecipe
Favorite recipe · object
required

Favorite recipe details.