Delete a User Recipe
Last updated
Was this helpful?
Was this helpful?
curl -XPOST 'https://production.suggestic.com/graphql' \
-H 'Authorization: Bearer <User-JWT>' \
-H 'Content-Type: application/json' \
--data-raw '{"query":"mutation { deleteMyRecipe (id:\"VXNlclJlY2lwZTpCbFVKWVh3QkZ4bmZEbThWempFVA==\") { success message } }"}'{
"data": {
"deleteMyRecipe": {
"success": true,
"message": "User Recipe deleted"
}
}
}