支出上限を設定
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"
}