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

# Pause a strategy

> Pause a single strategy. Queue cards become un-armable and
auto-respawn is suppressed. Existing Pending/Open cards continue
to be managed.



## OpenAPI

````yaml /api/openapi.json post /api/graph/v1/trade/strategies/{strategy_id}/pause
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/graph/v1/trade/strategies/{strategy_id}/pause:
    post:
      tags:
        - trade-cards
      summary: Pause a strategy
      description: |-
        Pause a single strategy. Queue cards become un-armable and
        auto-respawn is suppressed. Existing Pending/Open cards continue
        to be managed.
      operationId: pause_strategy_api_graph_v1_trade_strategies__strategy_id__pause_post
      parameters:
        - name: strategy_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Strategy Id
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/PauseStrategyRequest'
                - type: 'null'
              title: Body
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyPauseResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PauseStrategyRequest:
      properties:
        pause_type:
          type: string
          enum:
            - session
            - indefinite
          title: Pause Type
          description: >-
            'session' (resets at 1 AM ET) or 'indefinite' (persists until
            resumed)
          default: session
      type: object
      title: PauseStrategyRequest
    StrategyPauseResponse:
      properties:
        strategy_id:
          type: string
          format: uuid
          title: Strategy Id
        strategy_name:
          type: string
          title: Strategy Name
        pause_type:
          type: string
          title: Pause Type
        paused_at:
          type: string
          format: date-time
          title: Paused At
      type: object
      required:
        - strategy_id
        - strategy_name
        - pause_type
        - paused_at
      title: StrategyPauseResponse
    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

````