> ## 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.

# Generate an export for a completed quote nest

> The quote-nesting equivalent of `GET /v1/nesting/export`. Generates a quote-oriented export from a completed quote nest and delivers it **asynchronously to your webhook**.

Like `export`, this call does **not** return the export in the response body — it returns `{ "Success": true }` on acceptance and `POST`s the generated export to the `WebHookUri` you supply. There is no `ResponseType`; the quote export is a single fixed shape.



## OpenAPI

````yaml /openapi.json get /v1/nesting/exportquotenest
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/exportquotenest:
    parameters:
      - $ref: '#/components/parameters/Accept'
    get:
      tags:
        - nesting
      summary: Generate an export for a completed quote nest
      description: >-
        The quote-nesting equivalent of `GET /v1/nesting/export`. Generates a
        quote-oriented export from a completed quote nest and delivers it
        **asynchronously to your webhook**.


        Like `export`, this call does **not** return the export in the response
        body — it returns `{ "Success": true }` on acceptance and `POST`s the
        generated export to the `WebHookUri` you supply. There is no
        `ResponseType`; the quote export is a single fixed shape.
      operationId: GenerateQuoteNestingExport
      parameters:
        - name: RequestId
          in: query
          description: >-
            The completed quote nest to export, as returned from the
            quote-nesting endpoint.
          required: true
          x-nullable: false
          schema:
            type: string
        - name: WebHookUri
          in: query
          schema:
            $ref: '#/components/schemas/Uri'
            type: string
          description: >-
            The URL the generated export is `POST`ed to when it is ready.
            Required — without it the export has nowhere to be delivered.
          required: true
      responses:
        '200':
          description: >-
            The export request was accepted and queued for delivery to your
            webhook.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestApiExport'
        '401':
          description: API key is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestApiExport'
        '429':
          description: The export limit for this quote nest has been reached.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestApiExport'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    Uri:
      title: Uri
      properties: {}
      description: Uri
      type: object
    NestApiExport:
      title: NestApiExport
      properties:
        Success:
          description: >-
            `true` if the export request was accepted and queued. This is an
            acknowledgement only — the export itself is delivered later as a
            `POST` to your `WebHookUri`.
          type: boolean
          nullable: false
        Error:
          description: Error detail when `Success` is `false`; otherwise null.
          type: string
      description: NestApiExport
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````