Update Organization Recharge Policy
PATCH/v1/organizations/{organization_id}/billing/recharge_policy
Update the organization’s recharge mode: manual for self-serve top-ups, or automatic to charge the card on file at the recharge threshold (fixed and proportional required).
Update Organization Recharge Policy
curl https://api.nirvanalabs.io/v1/organizations/$ORGANIZATION_ID/billing/recharge_policy \
-X PATCH \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $NIRVANA_LABS_API_KEY" \
-d '{
"policy": "automatic"
}'{
"policy": "automatic",
"policy_args": {
"fixed": "-69125",
"runway_days": "-69125",
"monthly_cap": "-69125"
},
"policy_since": "2026-07-30T12:00:00Z"
}Returns Examples
{
"policy": "automatic",
"policy_args": {
"fixed": "-69125",
"runway_days": "-69125",
"monthly_cap": "-69125"
},
"policy_since": "2026-07-30T12:00:00Z"
}