> 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

# Merchant Updated

POST 

Triggered when a merchant account is updated.

Notification name: `updatedmerchant`

Reference: https://docs.payabli.com/developers/webhooks/payops-merchant-updated

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.updatedMerchant:
    post:
      operationId: subpackage_payOpsWebhooks.updatedMerchant
      summary: Merchant Updated
      description: |-
        Triggered when a merchant account is updated.

        Notification name: `updatedmerchant`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatedMerchantContent'
components:
  schemas:
    UpdatedMerchantContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - UpdatedMerchant
          description: Event type identifier
        Text:
          type: string
          description: Human-readable description of the event
        LegalName:
          type: string
          description: The merchant's legal business name
        DbaName:
          type: string
          description: The merchant's DBA (doing-business-as) name
        AppID:
          type: integer
          description: Unique boarding application identifier
        Entry:
          type: string
          description: Paypoint entrypoint identifier
        EntryUrl:
          type: string
          description: URL of the paypoint entrypoint
        createdAt:
          type: string
          description: Creation timestamp
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
      required:
        - Event
        - Text
        - LegalName
        - DbaName
        - AppID
        - Entry
        - EntryUrl
        - createdAt
        - ExternalPaypointId
      title: UpdatedMerchantContent

```