> 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

# Batch Released

POST 

Triggered when a Pay In batch is released from hold.

Notification name: `payin_batch_released`

Reference: https://docs.payabli.com/developers/webhooks/payin-batch-released

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payInWebhooks.payinBatchReleased:
    post:
      operationId: subpackage_payInWebhooks.payinBatchReleased
      summary: Pay In Batch Released
      description: |-
        Triggered when a Pay In batch is released from hold.

        Notification name: `payin_batch_released`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayinBatchReleasedContent'
components:
  schemas:
    PayinBatchReleasedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - ReleasedBatch
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        Text:
          type: string
          description: Human-readable description of the event
        batchId:
          type: integer
          description: Unique batch identifier
        batchAmount:
          type: string
          description: Total batch amount
        batchDate:
          type: string
          description: Batch date
        ContactUs:
          type: string
          description: Contact information string
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        Logo:
          type: string
          description: URL of the merchant/paypoint logo
      required:
        - Event
        - Paypoint
        - Text
        - batchId
        - batchAmount
        - batchDate
        - ContactUs
        - ExternalPaypointId
        - Logo
      title: PayinBatchReleasedContent

```