curl --request POST \
--url https://api.example.com/api/ai/configurations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"inputModality": [
"text"
],
"outputModality": [
"text"
],
"provider": "openrouter",
"modelId": "openai/gpt-4",
"systemPrompt": "<string>"
}
'