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

# MyNesting XML encoded request

> This endpoint requires calling with your ApiKey <br /><b>Request</b><br /> <b>MyNestingXML</b> <br /> Refer to Model link in body section of this endpoint's api doc below (Next to Example Value) <br /><b>ResultsWebhookUri</b><br /> Web hook uri to POST the result to



## OpenAPI

````yaml /openapi.json post /v1/nesting/mynesting
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/mynesting:
    parameters:
      - $ref: '#/components/parameters/Accept'
    post:
      tags:
        - nesting
      summary: MyNesting XML encoded request
      description: >-
        This endpoint requires calling with your ApiKey <br /><b>Request</b><br
        /> <b>MyNestingXML</b> <br /> Refer to Model link in body section of
        this endpoint's api doc below (Next to Example Value) <br
        /><b>ResultsWebhookUri</b><br /> Web hook uri to POST the result to
      operationId: MyNestingRequest
      parameters:
        - name: MyNestingXML
          in: query
          schema:
            type: string
        - name: ResultsWebhookUri
          in: query
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MyNestingRequest'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiNestingResult'
      deprecated: false
      security:
        - Bearer: []
components:
  parameters:
    Accept:
      name: Accept
      in: header
      description: Accept Header
      required: true
      schema:
        type: string
        enum:
          - application/json
  schemas:
    MyNestingRequest:
      title: MyNestingRequest
      properties:
        MyNestingXML:
          type: string
        ResultsWebhookUri:
          $ref: '#/components/schemas/Uri'
      description: >-
        Submit a nesting request from a MyNesting XML document. Async: returns a
        RequestId; the result is delivered to your ResultsWebhookUri.
      type: object
    ApiNestingResult:
      title: ApiNestingResult
      properties:
        RequestId:
          type: string
          nullable: false
      description: ApiNestingResult
      type: object
    Uri:
      title: Uri
      properties: {}
      description: Uri
      type: object
  securitySchemes:
    Bearer:
      type: apiKey
      name: Authorization
      in: header

````