# Approve Spend Limit Increase Request ## Path parameters ## Body parameters ## Returns ## Example ### Response (200)
The whole hunk
432 lines, new page
/
lines
A whole new page. There's nothing to diff it against, so here is what it says.
---
title: Approve Spend Limit Increase Request
url: https://platform.claude.com/docs/en/api/beta/organization/spend_limits/increase_requests/approve
---
# Approve Spend Limit Increase Request
**POST** `/v1/organizations/spend_limit_increase_requests/{spend_limit_increase_request_id}/approve`
Approve a pending spend limit increase request.
Writes a per-user spend limit at `amount` for the requester and
transitions the request to `approved`. `period` defaults to the period
the member was blocked on. Anthropic emails the requester unless
`suppress_notification` is set.
## Path parameters
- `spend_limit_increase_request_id: string`
ID of the spend limit increase request.
## Body parameters
- `amount: string`
New per-user spend limit as a non-negative integer decimal string (minor units).
- `period: optional "daily" or "monthly" or "weekly" or null`
- `"daily"`
- `"monthly"`
- `"weekly"`
- `suppress_notification: optional boolean`
## Returns
- `type: "spend_limit_increase_request"`
default: spend_limit_increase_request
- `id: string`
- `actor: object`
A user within the organization. `name` and `email_address` are
null when the underlying account is unavailable or has been deleted;
`deleted` is true only for deleted accounts.
- `type: "user_actor"`
Actor type. Always `user_actor`.
default: user_actor
- `deleted: boolean`
True only when the underlying account has been deleted.
default: false
- `email_address: string or null`
The user's email address. Null when the account is unavailable or has been deleted.
- `name: string or null`
The user's current display name. Null when the account is unavailable, has been deleted, or has no name set.
- `user_id: string`
Tagged ID of the user.
- `created_at: string`
format: date-time
- `period: "daily" or "monthly" or "weekly"`
- `"daily"`
- `"monthly"`
- `"weekly"`
- `resolved_at: string or null`
format: date-time
- `resolved_by: object or object or null`
A user within the organization. `name` and `email_address` are
null when the underlying account is unavailable or has been deleted;
`deleted` is true only for deleted accounts.
- `UserActor object`
A user within the organization. `name` and `email_address` are
null when the underlying account is unavailable or has been deleted;
`deleted` is true only for deleted accounts.
- `type: "user_actor"`
Actor type. Always `user_actor`.
default: user_actor
- `deleted: boolean`
True only when the underlying account has been deleted.
default: false
- `email_address: string or null`
The user's email address. Null when the account is unavailable or has been deleted.
- `name: string or null`
The user's current display name. Null when the account is unavailable, has been deleted, or has no name set.
- `user_id: string`
Tagged ID of the user.
- `ScopedAPIKeyActor object`
A scoped Admin API key acting on behalf of the organization.
- `type: "scoped_api_key_actor"`
default: scoped_api_key_actor
- `scoped_api_key_id: string`
- `spend_limit: BetaSpendLimit`
A configured spend limit: a cap on metered spend for one scope and period.
- `type: "spend_limit"`
Object type. Always `spend_limit`.
default: spend_limit
- `id: string`
Unique tagged ID of the spend limit (`spl_...`).
- `amount: string or null`
Limit amount as a non-negative integer decimal string in the minor unit of `currency` (cents for USD): "50000" is $500.00. `null` means no numeric cap is configured at this scope — see the effective report for whether a limit applies.
- `created_at: string`
RFC 3339 datetime at which the spend limit was created.
format: date-time
- `currency: string`
ISO 4217 code of the organization's billing currency; the unit for `amount`.
- `period: "daily" or "monthly" or "weekly"`
Length of the window the limit resets over. `amount` caps spend within each period.
- `"daily"`
- `"monthly"`
- `"weekly"`
- `scope: object or object or object or 2 more`
What the limit applies to. A tagged union on `type`; each variant carries the identifier for its scope.
- `User object`
Scope selecting a single member of the organization.
- `type: "user"`
Scope type. Always `user` for this scope.
default: user
- `user_id: string`
Tagged ID of the member the spend limit applies to.
- `SeatTier object`
- `type: "seat_tier"`
default: seat_tier
- `seat_tier: string`
- `RBACGroup object`
- `type: "rbac_group"`
default: rbac_group
- `rbac_group_id: string`
- `OrganizationService object`
- `type: "organization_service"`
default: organization_service
- `service: string`
- `Organization object`
- `type: "organization"`
default: organization
- `updated_at: string`
RFC 3339 datetime at which the spend limit was last modified.
format: date-time
- `spend_summary: BetaSpendSummary or null`
Per-member effective-limit report row (`GET /spend_limits/effective`).
- `actor: object`
A user within the organization. `name` and `email_address` are
null when the underlying account is unavailable or has been deleted;
`deleted` is true only for deleted accounts.
- `type: "user_actor"`
Actor type. Always `user_actor`.
default: user_actor
- `deleted: boolean`
True only when the underlying account has been deleted.
default: false
- `email_address: string or null`
The user's email address. Null when the account is unavailable or has been deleted.
- `name: string or null`
The user's current display name. Null when the account is unavailable, has been deleted, or has no name set.
- `user_id: string`
Tagged ID of the user.
- `amount: string or null`
Effective limit amount as a non-negative integer decimal string in the minor unit of `currency` (cents for USD). `null` means no limit applies for this row's `period` — each period resolves independently, so another period may still cap this member.
- `currency: string`
ISO 4217 code of the organization's billing currency; the unit for `amount` and `period_to_date_spend`.
- `period: "daily" or "monthly" or "weekly"`
Period this row's effective limit and spend are reported for.
- `"daily"`
- `"monthly"`
- `"weekly"`
- `period_to_date_spend: string`
The member's spend so far in the current period, as a non-negative decimal string in the minor unit of `currency` (cents for USD). May carry fractional minor units up to three decimal places (e.g. `"12050.5"`) — metered usage is not rounded to whole cents. Reads as `"0"` when the spend reading is temporarily unavailable.
- `scope: object`
Scope selecting a single member of the organization.
- `type: "user"`
Scope type. Always `user` for this scope.
default: user
- `user_id: string`
Tagged ID of the member the spend limit applies to.
Cut at 300 lines. The page has the rest.