设置支出限额
POST/v1/organizations/spend_limits
设置支出限额。
以(scope, period)为键执行 upsert(插入或更新):设置已存在的限额会就地覆盖该限额。Claude Enterprise 组织设置 user 限额,其席位层级、组和组织级别的默认值在 claude.ai 中配置。Claude Console 组织设置 organization 和 workspace 限额,这些限额按月计算且始终带有金额。设置这些限额目前处于抢先体验预览阶段。如需申请访问权限,请联系您的 Anthropic 客户团队。
Body
Returns
设置支出限额
curl https://api.anthropic.com/v1/organizations/spend_limits \
-H 'Content-Type: application/json' \
-H 'anthropic-version: 2023-06-01' \
-H "X-Api-Key: $ANTHROPIC_API_KEY" \
-d '{
"amount": "50000",
"scope": {
"type": "user",
"user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
},
"period": "monthly"
}'Response 200
{
"id": "id",
"amount": "50000",
"created_at": "2019-12-27T18:11:19.117Z",
"currency": "USD",
"period": "monthly",
"scope": {
"type": "user",
"user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
},
"type": "spend_limit",
"updated_at": "2019-12-27T18:11:19.117Z"
}Returns Examples
Response 200
{
"id": "id",
"amount": "50000",
"created_at": "2019-12-27T18:11:19.117Z",
"currency": "USD",
"period": "monthly",
"scope": {
"type": "user",
"user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
},
"type": "spend_limit",
"updated_at": "2019-12-27T18:11:19.117Z"
}