curl --request POST \
--url https://api.example.com/api/core/quick_actions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"use_case_id": "<string>",
"quick_action": {
"id": "<string>",
"label": {
"de": "<string>",
"en": "<string>"
},
"prompt_task": "<string>",
"prompt_output_format": "<string>",
"prompt_example_section": "<string>",
"icon": "fa-solid fa-bolt"
}
}
'