SnozeDevelopers
API referenceAdmin workspaces

Clear a workspace's plan limit override

Removes the platform-admin override and returns the workspace to its plan defaults, recording the supplied `reason`. Platform admins only. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

POST
/v1/admin/workspaces/{workspaceId}/override/clear
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/admin/workspaces/string/override/clear" \  -H "Content-Type: application/json" \  -d '{    "reason": "string"  }'
{  "data": {    "workspaceId": "string",    "name": "string",    "slug": "string",    "lifecycleStatus": "active",    "memberCount": 0,    "billedPlan": "free",    "subscriptionStatus": "none",    "effectivePlan": "free",    "currentPeriodEnd": "string",    "override": {      "planOverride": "free",      "aiMonthlyBonusMicrousd": 0,      "aiBurstBonusMicrousd": 0,      "featureGrants": [        "integrations"      ],      "reason": "string",      "expiresAt": "string",      "updatedAt": "string"    },    "lastResetAt": "string",    "aiUsage": {      "plan": "free",      "unlimited": true,      "monthly": {        "capMicrousd": 0,        "usedMicrousd": 0,        "remaining": 0,        "refillsAt": "string"      },      "burst": {        "capMicrousd": 0,        "usedMicrousd": 0,        "remaining": 0,        "refillsAt": "string"      },      "onboardingGrantActive": true,      "topupBalanceMicrousd": 0,      "topupsAvailable": true    }  }}