# Transaction Canceled POST Triggered when a Pay Out transaction (a payout) is voided or canceled. Notification name: `payout_transaction_voidedcancelled` Legacy notification name: `PayOutCanceled` Reference: https://docs.payabli.com/developers/webhooks/payout-transaction-voided-canceled ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Transaction Voided version: subpackage_payOutWebhooks.payoutTransactionVoidedCancelled webhooks: payout-transaction-voided-cancelled: post: operationId: payout-transaction-voided-cancelled summary: Transaction Voided description: |- Triggered when a Pay Out transaction (a payout) is voided or canceled. Notification name: `payout_transaction_voidedcancelled` Legacy notification name: `PayOutCanceled` 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:PayoutTransactionVoidedCancelledContent 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:TransId: type: string type_commons:TotalAmount: type: string type_commons:CustomerId: type: string type_commons:CustomerNumber: type: string type_commons:Method: type: string type_commons:ExternalPaypointId: type: string type_commons:TraceNumber: type: string type_commons:PayoutTransactionVoidedCancelledContent: type: object properties: Event: type: string enum: - type: stringLiteral value: PayOutVoidedCancelled description: Event type identifier Paypoint: $ref: '#/components/schemas/type_commons:Paypoint' Text: $ref: '#/components/schemas/type_commons:Text' TransId: $ref: '#/components/schemas/type_commons:TransId' TotalAmount: $ref: '#/components/schemas/type_commons:TotalAmount' CustomerId: $ref: '#/components/schemas/type_commons:CustomerId' CustomerNumber: $ref: '#/components/schemas/type_commons:CustomerNumber' Method: $ref: '#/components/schemas/type_commons:Method' ExternalPaypointId: oneOf: - $ref: '#/components/schemas/type_commons:ExternalPaypointId' - type: 'null' TraceNumber: oneOf: - $ref: '#/components/schemas/type_commons:TraceNumber' - type: 'null' required: - Event - Paypoint - Text - TransId - TotalAmount - CustomerId - CustomerNumber - Method - ExternalPaypointId - TraceNumber ```