> 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

# Virtual Card Accepted

POST 

Triggered when a virtual card transaction to a vendor is accepted.

Notification name: `payout_virtualcard_transaction_accepted`

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

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.payoutVirtualcardTransactionAccepted:
    post:
      operationId: subpackage_payOutWebhooks.payoutVirtualcardTransactionAccepted
      summary: Pay Out Virtual Card Transaction Accepted
      description: |-
        Triggered when a virtual card transaction to a vendor is accepted.

        Notification name: `payout_virtualcard_transaction_accepted`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutVirtualcardTransactionAcceptedContent'
components:
  schemas:
    PayoutVirtualcardTransactionAcceptedContent:
      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:
            - VirtualCardTransactionAccepted
          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: PayoutVirtualcardTransactionAcceptedContent

```