curl --request POST \
--url https://api.example.com/api/core/knowledge_assets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "<string>",
"label": {
"de": "<string>",
"en": "<string>"
},
"description": {
"de": "<string>",
"en": "<string>"
},
"knowledge_source_ids": [
"<string>"
],
"use_case_id": "<string>",
"is_selected_by_default": true
}
'