# Batch Resolved POST Triggered when a pay out batch is resolved. Notification name: `payout_batch_resolved` Reference: https://docs.payabli.com/developers/webhooks/payout-batch-resolved ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Batch Resolved version: subpackage_payOutWebhooks.payoutBatchResolved webhooks: payout-batch-resolved: post: operationId: payout-batch-resolved summary: Pay Out Batch Resolved description: |- Triggered when a pay out batch is resolved. Notification name: `payout_batch_resolved` 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:PayoutBatchResolvedContent' 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:PayoutBatchResolvedContent: type: object properties: Event: type: string enum: - type: stringLiteral value: PayOutBatchResolved 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 ```