# Settlement Transferred POST Triggered when a pay out batch settlement is transferred. Notification name: `payout_batch_settlement_transferred` Reference: https://docs.payabli.com/developers/webhooks/payout-settlement-transferred ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Batch Settlement Transferred version: subpackage_payOutWebhooks.payoutBatchSettlementTransferred webhooks: payout-batch-settlement-transferred: post: operationId: payout-batch-settlement-transferred summary: Pay Out Batch Settlement Transferred description: |- Triggered when a pay out batch settlement is transferred. Notification name: `payout_batch_settlement_transferred` 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:PayoutBatchSettlementTransferredContent 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:PayoutBatchSettlementTransferredContent: type: object properties: Event: type: string enum: - type: stringLiteral value: TransferTransferred 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 ```