지출 한도 설정
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"
}