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

# Continue a quote nest to the next sub-nest

> Stops the in-progress nest for this `RequestId` early and lets the server release the next one. This is the classic interactive "continue to next nest" and is only meaningful for a running quote nest.

**Body**

- `RequestId` — the running quote nest to advance.



## OpenAPI

````yaml /openapi.json post /v1/nesting/continue
openapi: 3.0.0
info:
  title: NestAPI
  version: '1.0'
servers:
  - url: https://api.nestapi.com
    description: Production
security: []
tags:
  - name: account
    description: API key and account management
  - name: admin
  - name: ApiAdmin
  - name: auth
  - name: billing
  - name: fairness
    description: >-
      Per-customer nesting-minutes fairness config, weights and usage (requires
      an Admin API key)
  - name: importer
  - name: nesting
    description: Submit nesting jobs, retrieve results and exports
  - name: plan
  - name: proxy
  - name: public
    description: Health check and public utility endpoints
  - name: subscriptionstatus
paths:
  /v1/nesting/continue:
    parameters:
      - $ref: '#/components/parameters/Accept'
    post:
      tags:
        - nesting
      summary: Continue a quote nest to the next sub-nest
      description: >-
        Stops the in-progress nest for this `RequestId` early and lets the
        server release the next one. This is the classic interactive "continue
        to next nest" and is only meaningful for a running quote nest.


        **Body**


        - `RequestId` — the running quote nest to advance.
      operationId: ContinueNesting
      parameters:
        - name: RequestId
          in: query
          x-nullable: false
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContinueNesting'
      responses:
        '200':
          description: The next sub-nest was released, or a reason it could not be.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestingContinued'
        '401':
          description: API key is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestingContinued'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    ContinueNesting:
      title: ContinueNesting
      properties:
        RequestId:
          type: string
          nullable: false
      description: ContinueNesting
      type: object
    NestingContinued:
      title: NestingContinued
      properties:
        Success:
          description: '`true` if the next sub-nest was released.'
          type: boolean
          nullable: false
        ErrorReason:
          description: Why the continue failed when `Success` is `false`; otherwise null.
          type: string
      description: NestingContinued
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````