Remove Project Usage Limit

Remove a resource limit so the project uses the full org allocation.

Remove a specific resource limit from a project, letting it use the full organization allocation.

Required: Owner role

POST
/removeProjectUsageLimit

Authorization

bearerToken

AuthorizationBearer <token>

API token for YourGPT Public APIs. Create tokens in Settings > API Tokens in your YourGPT dashboard.

In: header

Request Body

application/json

project_uid*string

The project UID.

limit_type*string

Type of resource limit to remove.

Value in"document" | "webpages" | "credits" | "voice_credits"

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.yourgpt.ai/chatbot/v1/removeProjectUsageLimit" \  -H "Content-Type: application/json" \  -d '{    "project_uid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",    "limit_type": "credits"  }'
{
  "type": "RXSUCCESS",
  "message": "Usage limit removed successfully"
}
{
  "type": "RXERROR",
  "message": "Invalid params"
}
{
  "type": "RXERROR",
  "message": "Invalid or revoked API token"
}
{
  "type": "RXERROR",
  "message": "You do not have permission to perform this action"
}