# Settlement Released POST Triggered when a pay out batch settlement is released from hold. Notification name: `payout_batch_settlement_released` Reference: https://docs.payabli.com/developers/webhooks/payout-settlement-released ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Batch Settlement Released version: subpackage_payOutWebhooks.payoutBatchSettlementReleased webhooks: payout-batch-settlement-released: post: operationId: payout-batch-settlement-released summary: Pay Out Batch Settlement Released description: |- Triggered when a pay out batch settlement is released from hold. Notification name: `payout_batch_settlement_released` 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:PayoutBatchSettlementReleasedContent 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:TransferId: type: string type_commons:NetAmount: type: string type_commons:TotalAmount: type: string type_commons:RtAmount: type: string type_commons:TransferTime: type: string type_commons:BatchId: type: string type_commons:ContactUs: type: string type_commons:BatchNumber: type: string type_commons:EntryPoint: type: string type_commons:ExternalPaypointId: type: string type_commons:PayoutBatchSettlementReleasedContent: type: object properties: Event: type: string enum: - type: stringLiteral value: TransferReleased description: Event type identifier Paypoint: $ref: '#/components/schemas/type_commons:Paypoint' Text: $ref: '#/components/schemas/type_commons:Text' transferId: $ref: '#/components/schemas/type_commons:TransferId' NetAmount: $ref: '#/components/schemas/type_commons:NetAmount' TotalAmount: $ref: '#/components/schemas/type_commons:TotalAmount' RtAmount: $ref: '#/components/schemas/type_commons:RtAmount' transferTime: $ref: '#/components/schemas/type_commons:TransferTime' batchId: $ref: '#/components/schemas/type_commons:BatchId' ContactUs: $ref: '#/components/schemas/type_commons:ContactUs' batchNumber: $ref: '#/components/schemas/type_commons:BatchNumber' entryPoint: $ref: '#/components/schemas/type_commons:EntryPoint' ExternalPaypointId: oneOf: - $ref: '#/components/schemas/type_commons:ExternalPaypointId' - type: 'null' required: - Event - Paypoint - Text - transferId - NetAmount - TotalAmount - RtAmount - transferTime - batchId - ContactUs - batchNumber - entryPoint - ExternalPaypointId ```