> ## Documentation Index
> Fetch the complete documentation index at: https://developers.respondent.io/llms.txt
> Use this file to discover all available pages before exploring further.

> Remove all quota criteria from a project. Recruitment will no longer be limited by demographic segments.

# Delete quota



## OpenAPI

````yaml delete /v1/projects/{projectId}/quota
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/projects/{projectId}/quota:
    delete:
      tags:
        - quota
      summary: Delete quota
      operationId: QuotaController_delete
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
        - name: projectId
          required: true
          in: path
          schema:
            type: string
      responses:
        '204':
          description: ''

````