> This is Payabli documentation. For a complete page index, fetch https://docs.payabli.com/llms.txt — append .md to any page URL for lightweight markdown. For section-level indexes, query parameters, and other AI-optimized access methods, see https://docs.payabli.com/ai-agents.md

# Funds Available

POST 

Triggered when funds become available in the Payabli account.

Notification name: `payout_funds_available`

Reference: https://docs.payabli.com/developers/webhooks/payout-funds-available

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.payoutFundsAvailable:
    post:
      operationId: subpackage_payOutWebhooks.payoutFundsAvailable
      summary: Pay Out Funds Available
      description: |-
        Triggered when funds become available in the Payabli account.

        Notification name: `payout_funds_available`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutFundsAvailableContent'
components:
  schemas:
    PayoutFundsAvailableContent:
      type: object
      properties:
        transferOutId:
          type: string
          description: Unique identifier for the outbound transfer
        netAmount:
          type: string
          description: Net amount in currency format
        totalAmount:
          type: string
          description: Total transaction amount including fees
        transferTime:
          type: string
          description: Transfer timestamp
        paypointDba:
          type: string
          description: The DBA name of the merchant/paypoint
        event:
          type: string
          enum:
            - PayoutFundsAvailable
          description: Event type identifier
        paypoint:
          type: string
          description: The name of the merchant/paypoint
        text:
          type: string
          description: Human-readable description of the event
        contactUs:
          type: string
          description: Contact information string
        entryPoint:
          type: string
          description: System entry point identifier
      required:
        - transferOutId
        - netAmount
        - totalAmount
        - transferTime
        - paypointDba
        - event
        - paypoint
        - text
        - contactUs
        - entryPoint
      title: PayoutFundsAvailableContent

```