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

# Call this to start nesting in nesting ui once you have connected to signal R and invoked ListenForUpdates

> This endpoint requires calling with your ApiKey <br /><br />Call this to start nesting in nesting ui once you have connected to signal R and invoked ListenForUpdates



## OpenAPI

````yaml /openapi.json post /v1/nesting/delayedstart
openapi: 3.0.0
info:
  title: NestAPI
  version: '1.0'
servers:
  - description: Staging
    url: https://dev.api.nestapi.com
security: []
tags:
  - name: account
    description: API key and account management
  - name: ApiAdmin
  - name: auth
  - 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: public
    description: Health check and public utility endpoints
paths:
  /v1/nesting/delayedstart:
    parameters:
      - $ref: '#/components/parameters/Accept'
    post:
      tags:
        - nesting
      summary: >-
        Call this to start nesting in nesting ui once you have connected to
        signal R and invoked ListenForUpdates
      description: >-
        This endpoint requires calling with your ApiKey <br /><br />Call this to
        start nesting in nesting ui once you have connected to signal R and
        invoked ListenForUpdates
      operationId: ReadyForNesting
      parameters:
        - name: RequestId
          in: query
          x-nullable: false
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReadyForNesting'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NestingStarted'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    ReadyForNesting:
      title: ReadyForNesting
      properties:
        RequestId:
          type: string
          nullable: false
      description: ReadyForNesting
      type: object
    NestingStarted:
      title: NestingStarted
      properties:
        Success:
          type: boolean
          nullable: false
        ErrorReason:
          type: string
      description: NestingStarted
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````