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

# Update Recipe defaults

> Enterprise-only management update. Legacy strategy is translated when mode is absent; legacy rails is accepted and ignored.



## OpenAPI

````yaml /api-reference/openapi.json put /credits/router/settings
openapi: 3.1.0
info:
  title: Locus Pro API
  description: >-
    Access paid tools, manage prepaid balances, and build usage billing. Send
    money as exact decimal strings and reuse Idempotency-Key on retries.
    Management routes require a scoped server key or authorized dashboard
    session. Sensitive workspace changes require an owner or admin with recent
    MFA or passkey verification, except where an operation documents a stricter
    boundary. Interactive agents use MCP OAuth; unattended agents use scoped
    Agent Connections. Browser widgets use end-user tokens.
  version: 0.7.0
servers:
  - url: https://api.paywithlocus.com/api
    description: Production
  - url: https://api.stage.paywithlocus.com/api
    description: Stage — evaluation and integration testing
security:
  - secretKey: []
tags:
  - name: Authentication
    description: Email-verified self-serve account creation and dashboard identity
  - name: Tenants
    description: Tenant profile, keys, and settings (dashboard session or secret key)
  - name: Workspace members
    description: Invite-only human workspace membership and role administration
  - name: Catalog
    description: Enable/disable APIs and set markups
  - name: Custom APIs
    description: Feature-gated enterprise BYOK providers and schema-backed custom actions
  - name: End users
    description: End-user accounts, tokens, and allocations
  - name: Top-ups
    description: Locus-hosted checkout top-ups and quotes
  - name: Ledger
    description: Burn/top-up history and earnings
  - name: Webhooks
    description: Signed events, delivery inspection, and replay
  - name: Burn
    description: Metered pay-per-use calls
  - name: MCP
    description: Stateless Streamable HTTP transport and MCP tool-result contracts
  - name: Okibi Identity
    description: >-
      Feature-gated Okibi identity verification and scoped native CLI credential
      bootstrap
  - name: Widget
    description: End-user JWT surface; a matching publishable key is optional
  - name: Agent-native onboarding
    description: >-
      Self-registration, human Stripe funding handoff, and restricted account
      setup for headless agents
  - name: Hosted Workflows
    description: >-
      Tenant-private TypeScript Workflow definitions, immutable versions,
      bounded runs, artifacts, and recovery
  - name: Agent connections
    description: Scoped, expiring, revocable credentials for agent execution
  - name: Recipes
    description: >-
      Search, research, extraction, enrichment, and travel outcomes across
      providers
paths:
  /credits/router/settings:
    put:
      tags:
        - Recipes
      summary: Update Recipe defaults
      description: >-
        Enterprise-only management update. Legacy strategy is translated when
        mode is absent; legacy rails is accepted and ignored.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              required:
                - webSearch
              properties:
                webSearch:
                  type: object
                  additionalProperties: false
                  properties:
                    mode:
                      type: string
                      enum:
                        - fast
                        - balanced
                        - comprehensive
                    maxResults:
                      type: integer
                      minimum: 1
                      maximum: 20
                    maxProviders:
                      type: integer
                      minimum: 1
                      maximum: 13
                    strategy:
                      type: string
                      enum:
                        - balanced
                        - cost
                        - quality
                        - speed
                      deprecated: true
                      description: >-
                        Legacy v1 selector. When mode is omitted, quality maps
                        to comprehensive, cost/speed map to fast, and balanced
                        maps to balanced.
                    topic:
                      type: string
                      enum:
                        - general
                        - news
                    includeImages:
                      type: boolean
                    providers:
                      type:
                        - array
                        - 'null'
                      items:
                        type: string
                      description: >-
                        null allows every registered provider; an array is a
                        hard allowlist.
                    rails:
                      type: array
                      items:
                        type: string
                        enum:
                          - api-key
                          - x402
                          - mpp
                      deprecated: true
                      description: >-
                        Legacy v1 payment-path allowlist. Accepted but ignored
                        because Locus chooses each provider payment path
                        internally.
      responses:
        '200':
          description: Updated settings and provider availability
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
        '403':
          description: Enterprise tier and catalog:write scope required
      security:
        - dashboardSession: []
        - secretKey: []
components:
  securitySchemes:
    secretKey:
      type: http
      scheme: bearer
      description: Tenant secret key (lcr_…). Server-side only.
    dashboardSession:
      type: http
      scheme: bearer
      description: >-
        Locus Pro dashboard session (Cognito). High-risk workspace
        administration requires an owner or admin role and fresh MFA/passkey
        step-up.

````