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

# Simulate order dispatch accepted

> Sandbox only. Advances a SUBMITTED order to ACCEPTED, mirroring exchange acceptance, and emits order.accepted.



## OpenAPI

````yaml /openapi.yaml get /api/simulation/orders/v1/:id/accept
openapi: 3.0.3
info:
  title: MF Atlas API
  version: 1.0.0
servers:
  - description: Sandbox
    url: https://api-sandbox.mf-atlas.space
  - description: Production
    url: https://api.mf-atlas.space
security:
  - bearerAuth: []
paths:
  /api/simulation/orders/v1/:id/accept:
    get:
      tags:
        - simulation
      summary: Simulate order dispatch accepted
      description: >-
        Sandbox only. Advances a SUBMITTED order to ACCEPTED, mirroring exchange
        acceptance, and emits order.accepted.
      parameters:
        - description: ''
          in: path
          name: id
          required: true
          schema:
            type: string
        - description: ''
          in: query
          name: token
          required: true
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: string
                  message:
                    type: string
                  success:
                    type: boolean
                type: object
          description: Applied
components:
  securitySchemes:
    bearerAuth:
      bearerFormat: Opaque bearer token from POST /api/auth/v1/token
      scheme: bearer
      type: http

````