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

# Resume Strategy



## OpenAPI

````yaml patch /v1/paper/strategies/{strategy_id}/resume
openapi: 3.1.0
info:
  title: PolyQuantLab API
  version: 0.1.0
  description: >-
    Sub-second Polymarket orderbook data, walk-the-book backtests, paper
    trading, and the live arb audit. Same endpoints the PolyQuantLab dashboard
    uses internally — Bearer-token auth, JSON-over-HTTPS, predictable
    pagination.
  contact:
    email: contact@polyquantlab.com
    url: https://polyquantlab.com/contact
  license:
    name: Proprietary
servers:
  - url: https://api.polyquantlab.com
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /v1/paper/strategies/{strategy_id}/resume:
    patch:
      tags:
        - paper
      summary: Resume Strategy
      operationId: resume_strategy_v1_paper_strategies__strategy_id__resume_patch
      parameters:
        - name: strategy_id
          in: path
          required: true
          schema:
            type: string
            title: Strategy Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/ResumeStrategyVPaperStrategiesStrategyIdResumePatchResponse
              example:
                ok: true
                paper_strategy_id: ps_4821a0e0
                active: true
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ResumeStrategyVPaperStrategiesStrategyIdResumePatchResponse:
      type: object
      properties:
        ok:
          type: boolean
        paper_strategy_id:
          type: string
        active:
          type: boolean
      required:
        - ok
        - paper_strategy_id
        - active
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````