> 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 Sent

POST 

Triggered when a virtual card is sent to a vendor.

Notification name: `vcardsent`

Reference: https://docs.payabli.com/developers/webhooks/payout-vcard-sent

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.vcardSent:
    post:
      operationId: subpackage_payOutWebhooks.vcardSent
      summary: Virtual Card Sent
      description: |-
        Triggered when a virtual card is sent to a vendor.

        Notification name: `vcardsent`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VcardSentContent'
components:
  schemas:
    VcardSentContent:
      type: object
      properties:
        event:
          type: string
          enum:
            - CardSent
          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
        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
        declineReason:
          type: string
          description: Reason the card transaction was declined
        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
      required:
        - event
        - paypoint
        - text
        - contactUs
        - externalPaypointId
        - entryPoint
        - vCardToken
        - transactionId
        - vCardAmount
        - vendorId
        - vendorNumber
        - paypointDba
        - vCardExpirationDate
        - declineReason
        - vendorName
        - totalAmount
        - method
        - customerId
        - customerName
        - customerNumber
      title: VcardSentContent

```