# Batch Canceled POST Triggered when a pay out batch is cancelled (replaces payoutbatchcancelled). - Notification name: `payout_batch_cancelled` - Legacy notification name: `payoutbatchcancelled` Reference: https://docs.payabli.com/developers/webhooks/payout-batch-canceled ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Batch Cancelled version: subpackage_payOutWebhooks.payoutBatchCancelled webhooks: payout-batch-cancelled: post: operationId: payout-batch-cancelled summary: Pay Out Batch Cancelled description: >- Triggered when a pay out batch is cancelled (replaces payoutbatchcancelled). - Notification name: `payout_batch_cancelled` - Legacy notification name: `payoutbatchcancelled` 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:PayoutBatchCancelledContent' 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:PayoutBatchCancelledContent: type: object properties: Event: type: string enum: - type: stringLiteral value: PayOutBatchCancelled 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 ```