Ausgabenlimit festlegen
POST/v1/organizations/spend_limits
Legt ein Spend Limit (Ausgabenlimit) fest.
Upsert mit Schlüssel (scope, period): Das Festlegen eines bereits bestehenden Limits
überschreibt es an Ort und Stelle. Eine Claude Enterprise-Organisation legt Limits vom Typ user
fest. Ihre Standardwerte auf Seat-Tier-, Gruppen- und Organisationsebene werden
in claude.ai konfiguriert. Eine Claude Console-Organisation legt Limits vom Typ organization und
workspace fest, die monatlich gelten und immer einen Betrag enthalten. Das Festlegen dieser
Limits befindet sich in einer Early-Access-Vorschau. Um Zugang anzufordern, wende dich an dein
Anthropic-Account-Team.
Body
Returns
Ausgabenlimit festlegen
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"
}