> ## 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.

# Create Payout

> Internal: submit a payout via the active connector for `gateway`.

Guarded by X-Internal-Secret (account-service is the only caller).
Guards in order:
  1. X-Internal-Secret header check → 403
  2. Body field validation (gateway/tx_id/attempt/amount/currency) → 400
  3. Active integration lookup → 409
  4. payouts_enabled config kill-switch → 409
  5. SUPPORTS_PAYOUTS class flag → 409
  6. BridgerPay without webhook_secret (fail-open double-pay guard) → 409
On success, audit row is written in the same session.
Returns: {payout_reference, status, gateway_payload}



## OpenAPI

````yaml /openapi.json post /integrations/payments/create-payout
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:
  /integrations/payments/create-payout:
    post:
      tags:
        - Integrations
      summary: Create Payout
      description: |-
        Internal: submit a payout via the active connector for `gateway`.

        Guarded by X-Internal-Secret (account-service is the only caller).
        Guards in order:
          1. X-Internal-Secret header check → 403
          2. Body field validation (gateway/tx_id/attempt/amount/currency) → 400
          3. Active integration lookup → 409
          4. payouts_enabled config kill-switch → 409
          5. SUPPORTS_PAYOUTS class flag → 409
          6. BridgerPay without webhook_secret (fail-open double-pay guard) → 409
        On success, audit row is written in the same session.
        Returns: {payout_reference, status, gateway_payload}
      operationId: create_payout_integrations_payments_create_payout_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````