curl --request PUT \
--url https://api.example.com/api/core/use_cases \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"use_case_id": "<string>",
"label": {
"de": "<string>",
"en": "<string>"
},
"description": {
"de": "<string>",
"en": "<string>"
}
}
'