cURL
curl --request POST \ --url https://server.codeium.com/api/v1/GetUsageConfig \ --header 'Content-Type: application/json' \ --data ' { "service_key": "<string>", "team_level": true, "group_id": "<string>", "user_email": "<string>" } '
{ "add_on_credit_cap": 123 }
获取附加额度的使用上限配置
true
team_level
group_id
user_email
curl -X POST --header "Content-Type: application/json" \ --data '{ "service_key": "your_service_key_here", "team_level": true }' \ https://server.codeium.com/api/v1/GetUsageConfig
curl -X POST --header "Content-Type: application/json" \ --data '{ "service_key": "your_service_key_here", "group_id": "engineering_team" }' \ https://server.codeium.com/api/v1/GetUsageConfig
curl -X POST --header "Content-Type: application/json" \ --data '{ "service_key": "your_service_key_here", "user_email": "[email protected]" }' \ https://server.codeium.com/api/v1/GetUsageConfig
{ "add_on_credit_cap": 10000 }
{}