> This is Payabli documentation. For a complete page index, fetch https://docs.payabli.com/llms.txt — append .md to any page URL for lightweight markdown. For section-level indexes, query parameters, and other AI-optimized access methods, see https://docs.payabli.com/ai-agents.md

# Transaction Reissued

POST 

Triggered when a pay out transaction is reissued.

Notification name: `payout_transaction_reissued`

Reference: https://docs.payabli.com/developers/webhooks/payout-transaction-reissued

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.payoutTransactionReissued:
    post:
      operationId: subpackage_payOutWebhooks.payoutTransactionReissued
      summary: Pay Out Transaction Reissued
      description: |-
        Triggered when a pay out transaction is reissued.

        Notification name: `payout_transaction_reissued`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutTransactionReissuedContent'
components:
  schemas:
    PayoutTransactionReissuedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - PayOutReissued
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        Text:
          type: string
          description: Human-readable description of the event
        TransId:
          type: string
          description: Unique transaction identifier
        TotalAmount:
          type: string
          description: Total transaction amount including fees
        CustomerId:
          type: string
          description: The unique identifier for the customer
        CustomerNumber:
          type: string
          description: Internal customer identifier
        Method:
          type: string
          description: Payment processing method
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        EntryPoint:
          type: string
          description: System entry point identifier
        TraceNumber:
          type:
            - string
            - 'null'
          description: Trace number for the vendor ACH credit
        FundingSource:
          type: string
          description: The funding source used to fund the payout
        PaymentStatus:
          type: string
          description: The resulting payment status for the transaction
        ReturnedAmount:
          type: integer
          description: Amount returned to the funding source, when applicable
        Reason:
          type: string
          description: The reason the payout capture didn't succeed, when applicable
      required:
        - Event
        - Paypoint
        - Text
        - TransId
        - TotalAmount
        - CustomerId
        - CustomerNumber
        - Method
        - ExternalPaypointId
        - EntryPoint
        - TraceNumber
        - FundingSource
        - PaymentStatus
      title: PayoutTransactionReissuedContent

```