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

# Update Broker Instrument

> Update broker-level configuration for an instrument (is_enabled, tradeability).

On a FALSE→TRUE is_enabled flip, seeds group_instruments rows for all
active groups with tradeability='non_tradable' (idempotent via NOT EXISTS).
Returns groups_seeded count so CRM toast can surface it.



## OpenAPI

````yaml /openapi.json patch /broker/instruments/{symbol}
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /broker/instruments/{symbol}:
    patch:
      tags:
        - Instruments & Groups
      summary: Update Broker Instrument
      description: >-
        Update broker-level configuration for an instrument (is_enabled,
        tradeability).


        On a FALSE→TRUE is_enabled flip, seeds group_instruments rows for all

        active groups with tradeability='non_tradable' (idempotent via NOT
        EXISTS).

        Returns groups_seeded count so CRM toast can surface it.
      operationId: update_broker_instrument_broker_instruments__symbol__patch
      parameters:
        - name: symbol
          in: path
          required: true
          schema:
            type: string
            title: Symbol
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrokerInstrumentUpdateRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrokerInstrumentResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BrokerInstrumentUpdateRequest:
      properties:
        is_enabled:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Is Enabled
        tradeability:
          anyOf:
            - type: string
            - type: 'null'
          title: Tradeability
        stale_threshold_ms:
          anyOf:
            - type: integer
              minimum: 1000
            - type: 'null'
          title: Stale Threshold Ms
      type: object
      title: BrokerInstrumentUpdateRequest
    BrokerInstrumentResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        instrument_id:
          type: string
          format: uuid
          title: Instrument Id
        symbol:
          type: string
          title: Symbol
        is_enabled:
          type: boolean
          title: Is Enabled
        tradeability:
          anyOf:
            - type: string
            - type: 'null'
          title: Tradeability
        asset_class:
          anyOf:
            - type: string
            - type: 'null'
          title: Asset Class
        stale_threshold_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Stale Threshold Ms
        effective_stale_threshold_ms:
          type: integer
          title: Effective Stale Threshold Ms
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
        base_currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Currency
        quote_currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Quote Currency
        contract_size:
          anyOf:
            - type: integer
            - type: 'null'
          title: Contract Size
        digits:
          anyOf:
            - type: integer
            - type: 'null'
          title: Digits
        exchange:
          anyOf:
            - type: string
            - type: 'null'
          title: Exchange
        mic_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Mic Code
        provider:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider
        logo_base_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Base Url
        logo_quote_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Logo Quote Url
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        groups_seeded:
          type: integer
          title: Groups Seeded
          default: 0
      type: object
      required:
        - id
        - instrument_id
        - symbol
        - is_enabled
        - tradeability
        - effective_stale_threshold_ms
        - created_at
        - updated_at
      title: BrokerInstrumentResponse
    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
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````