> 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

# Fund Virtual Card Success

POST 

Triggered when a virtual card transaction for a vendor is funded successfully.

Notification name: `payout_fund_virtualcard_transaction_success`

Reference: https://docs.payabli.com/developers/webhooks/payout-fund-virtualcard-success

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.payoutFundVirtualcardTransactionSuccess:
    post:
      operationId: subpackage_payOutWebhooks.payoutFundVirtualcardTransactionSuccess
      summary: Pay Out Fund Virtual Card Transaction Success
      description: >-
        Triggered when a virtual card transaction for a vendor is funded
        successfully.


        Notification name: `payout_fund_virtualcard_transaction_success`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/PayoutFundVirtualcardTransactionSuccessContent
components:
  schemas:
    PayoutFundVirtualcardTransactionSuccessContent:
      type: object
      properties:
        vCardToken:
          type: string
          description: Virtual card token
        transactionId:
          type: string
          description: Unique transaction identifier
        vCardAmount:
          type: string
          description: Virtual card amount in currency format
        vendorId:
          type: string
          description: The unique identifier for the vendor
        vendorNumber:
          type: string
          description: Internal vendor identifier
        paypointDba:
          type: string
          description: The DBA name of the merchant/paypoint
        vCardExpirationDate:
          type: string
          description: Virtual card expiration date
        vendorName:
          type: string
          description: The vendor name
        totalAmount:
          type: string
          description: Total transaction amount including fees
        method:
          type: string
          description: Payment processing method
        customerId:
          type: string
          description: The unique identifier for the customer
        customerName:
          type: string
          description: The customer or vendor name
        customerNumber:
          type: string
          description: Internal customer identifier
        event:
          type: string
          enum:
            - FundVirtualCardTransactionSuccess
          description: Event type identifier
        paypoint:
          type: string
          description: The name of the merchant/paypoint
        text:
          type: string
          description: Human-readable description of the event
        contactUs:
          type: string
          description: Contact information string
        externalPaypointId:
          type: string
          description: External paypoint system identifier
        entryPoint:
          type: string
          description: System entry point identifier
      required:
        - vCardToken
        - transactionId
        - vCardAmount
        - vendorId
        - vendorNumber
        - paypointDba
        - vCardExpirationDate
        - vendorName
        - totalAmount
        - method
        - customerId
        - customerName
        - customerNumber
        - event
        - paypoint
        - text
        - contactUs
        - externalPaypointId
        - entryPoint
      title: PayoutFundVirtualcardTransactionSuccessContent

```