curl --request POST \
--url http://localhost:8080/api/governance/virtual-keys \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"provider_configs": [
{
"id": 123,
"provider": "<string>",
"weight": 123,
"allowed_models": [
"<string>"
]
}
],
"mcp_configs": [
{
"id": 123,
"mcp_client_name": "<string>",
"tools_to_execute": [
"<string>"
]
}
],
"team_id": "<string>",
"customer_id": "<string>",
"budget": {
"max_limit": 123,
"reset_duration": "<string>"
},
"rate_limit": {
"token_max_limit": 123,
"token_reset_duration": "<string>",
"request_max_limit": 123,
"request_reset_duration": "<string>"
},
"key_ids": [
"<string>"
],
"is_active": true
}'