# Transaction Paid POST Triggered when a pay out transaction is paid. Notification name: `payout_transaction_paid` Legacy notification name: `PayOutPaid` Reference: https://docs.payabli.com/developers/webhooks/payout-transaction-paid ## OpenAPI 3.1 Webhook Specification ```yaml openapi: 3.1.0 info: title: webhooks version: 1.0.0 paths: {} webhooks: payout-transaction-paid: post: operationId: payout-transaction-paid summary: Pay Out Transaction Paid description: |- Triggered when a pay out transaction is paid. Notification name: `payout_transaction_paid` Legacy notification name: `PayOutPaid` 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:PayoutTransactionPaidContent' components: schemas: type_commons:Content-Length: type: string description: The content length of the payload title: Content-Length type_commons:Content-Type: type: string description: Always application/json; charset=utf-8 title: Content-Type type_commons:Accept: type: string description: Content types accepted, typically * /* title: Accept type_commons:String: type: string description: String header field title: String type_commons:Host: type: string description: Host IP address (52.3.204.115 for sandbox, 54.166.54.170 for production) title: Host type_commons:Paypoint: type: string description: The name of the merchant/paypoint title: Paypoint type_commons:Text: type: string description: Human-readable description of the event title: Text type_commons:TransId: type: string description: Unique transaction identifier title: TransId type_commons:TotalAmount: type: string description: Total transaction amount including fees title: TotalAmount type_commons:CustomerId: type: string description: The unique identifier for the customer title: CustomerId type_commons:CustomerNumber: type: string description: Internal customer identifier title: CustomerNumber type_commons:Method: type: string description: Payment processing method title: Method type_commons:ExternalPaypointId: type: string description: External paypoint system identifier title: ExternalPaypointId type_commons:TraceNumber: type: string description: Trace number for the vendor ACH credit title: TraceNumber type_commons:PayoutTransactionPaidContent: type: object properties: Event: type: string enum: - PayOutPaid 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 title: PayoutTransactionPaidContent ```