# Transaction Rejected POST Triggered when a pay out transaction is rejected. Notification name: `payout_transaction_rejected` Reference: https://docs.payabli.com/developers/webhooks/payout-transaction-rejected ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.1 info: title: Pay Out Transaction Rejected version: subpackage_payOutWebhooks.payoutTransactionRejected webhooks: payout-transaction-rejected: post: operationId: payout-transaction-rejected summary: Pay Out Transaction Rejected description: |- Triggered when a pay out transaction is rejected. Notification name: `payout_transaction_rejected` 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:PayoutTransactionRejectedContent 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:PayoutTransactionRejectedContent: type: object properties: Event: type: string enum: - type: stringLiteral value: PayOutRejected 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 ```