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

# Cancel all orders

> Cancel every open order belonging to your account

Cancel **every** open order belonging to the caller across every game and league. Use this for emergency stops — a kill switch from a monitoring system, for example.

For a less destructive alternative that lets you resume orders later, see `POST /session/pauseOrders` (sister endpoint that cancels and remembers; pair with `resumeOrders`).

## Request

`POST /session/cancelAllOrders`

Takes no parameters.

<CodeGroup>
  ```bash curl theme={null}
  curl -X POST https://api.4casters.io/session/cancelAllOrders \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</CodeGroup>

## Response

<ResponseField name="data" type="array">
  Per-order cancel results. Same shape as [Cancel an order](/pages/rest/orders/cancel-order#response).
</ResponseField>

### Example

<CodeGroup>
  ```json JSON theme={null}
  {
    "data": [
      {
        "success": true,
        "sessionID": "65b036dfb31407c2b6bc1cfe",
        "odds": -110,
        "filled": 0,
        "offered": 0,
        "remaining": 100,
        "gameID": "65f0c3c24ef07d0008abc123"
      },
      {
        "success": true,
        "sessionID": "65b036e0b31407c2b6bc1d08",
        "odds": 125,
        "filled": 25,
        "offered": 0,
        "remaining": 75,
        "gameID": "65f0c4ae4ef07d0008abc456"
      }
    ]
  }
  ```
</CodeGroup>


## OpenAPI

````yaml POST /session/cancelAllOrders
openapi: 3.1.0
info:
  title: 4casters REST API
  version: 1.0.0
  description: >-
    Public REST API for the 4casters peer-to-peer betting exchange. Use this API
    to manage your account, query the orderbook and games, and place / edit /
    cancel orders.


    All responses (unless noted otherwise) are JSON envelopes of the form `{
    "data": ... }`.
  contact:
    name: 4casters
    url: https://4casters.io
servers:
  - url: https://api.4casters.io
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Authentication
    description: Login and account session management
  - name: User
    description: Read account info, bets, and orders
  - name: Orders
    description: Place, edit, look up, and cancel orders
  - name: Markets
    description: Browse leagues, games, participants, and orderbooks
  - name: Affiliate
    description: Affiliate / referral commission
paths:
  /session/cancelAllOrders:
    post:
      tags:
        - Orders
      summary: Cancel all orders
      description: >-
        Cancel **every** open order belonging to the caller across every game
        and league.
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Per-order cancel results
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/CancelResult'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    CancelResult:
      type: object
      properties:
        success:
          type: boolean
        reason:
          type: string
          description: Failure reason. Present only when `success` is `false`.
        sessionID:
          type: string
          description: Order id.
        description:
          type: string
          description: Human-readable order description (e.g. `Lakers -3.5 -110`).
        odds:
          type: integer
          description: American odds of the cancelled order.
        filled:
          type: number
        offered:
          type: number
        remaining:
          type: number
        gameID:
          type: string
        userReference:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid auth token
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Pass your auth token in the `Authorization` header. The `Bearer` prefix
        is optional; the server also accepts a signed `auth` cookie or a `token`
        field in the request body.

````