# Batch Paid POST Triggered when a pay out batch is paid (replaces payoutbatchpaid). - Notification name: `payout_batch_paid` - Legacy notification name: `payoutbatchpaid` Reference: https://docs.payabli.com/developers/webhooks/payout-batch-paid ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Batch Paid version: subpackage_payOutWebhooks.payoutBatchPaid webhooks: payout-batch-paid: post: operationId: payout-batch-paid summary: Pay Out Batch Paid description: |- Triggered when a pay out batch is paid (replaces payoutbatchpaid). - Notification name: `payout_batch_paid` - Legacy notification name: `payoutbatchpaid` tags: - subpackage_payOutWebhooks parameters: - name: Content-Length in: header required: true schema: $ref: '#/components/schemas/type_commons:Content-Length' - name: Content-Type in: header required: true schema: $ref: '#/components/schemas/type_commons:Content-Type' - name: Accept in: header required: true schema: $ref: '#/components/schemas/type_commons:Accept' - name: String in: header required: true schema: $ref: '#/components/schemas/type_commons:String' - name: Host in: header required: true schema: $ref: '#/components/schemas/type_commons:Host' responses: '200': description: Webhook received successfully requestBody: content: application/json: schema: $ref: '#/components/schemas/type_commons:PayoutBatchPaidContent' components: schemas: type_commons:Content-Length: type: string type_commons:Content-Type: type: string type_commons:Accept: type: string type_commons:String: type: string type_commons:Host: type: string type_commons:Paypoint: type: string type_commons:Text: type: string type_commons:BatchId: type: string type_commons:TotalAmount: type: string type_commons:Method: type: string type_commons:PayoutBatchPaidContent: type: object properties: Event: type: string enum: - type: stringLiteral value: PayOutBatchPaid description: Event type identifier Paypoint: $ref: '#/components/schemas/type_commons:Paypoint' Text: $ref: '#/components/schemas/type_commons:Text' BatchId: $ref: '#/components/schemas/type_commons:BatchId' TotalAmount: $ref: '#/components/schemas/type_commons:TotalAmount' Method: $ref: '#/components/schemas/type_commons:Method' required: - Event - Paypoint - Text - BatchId - TotalAmount - Method ```