> 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

# Vendor Updated

POST 

Triggered when a vendor is updated.

Notification name: `vendor_updated`

Reference: https://docs.payabli.com/developers/webhooks/payout-vendor-updated

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOutWebhooks.vendorUpdated:
    post:
      operationId: subpackage_payOutWebhooks.vendorUpdated
      summary: Vendor Updated
      description: |-
        Triggered when a vendor is updated.

        Notification name: `vendor_updated`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VendorUpdatedContent'
components:
  schemas:
    VendorUpdatedContent:
      type: object
      properties:
        vendorId:
          type: string
          description: The unique identifier for the vendor
        vendorNumber:
          type: string
          description: Internal vendor identifier
        vendorName:
          type: string
          description: The vendor name
        event:
          type: string
          enum:
            - VendorUpdated
          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:
        - vendorId
        - vendorNumber
        - vendorName
        - event
        - paypoint
        - text
        - contactUs
        - externalPaypointId
        - entryPoint
      title: VendorUpdatedContent

```