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

POST 

Triggered when a merchant account is activated.

Notification name: `activatedmerchant`

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

## OpenAPI 3.1 Webhook Specification

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

        Notification name: `activatedmerchant`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ActivatedMerchantContent'
components:
  schemas:
    ActivatedMerchantContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - ActivatedMerchant
          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
        Service:
          type: string
          description: The service enabled for the merchant
        ProcessorId:
          type: string
          description: Processor identifier
        AccountId:
          type: string
          description: Processor account identifier
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
      required:
        - Event
        - Text
        - LegalName
        - DbaName
        - AppID
        - Entry
        - EntryUrl
        - createdAt
        - Service
        - ProcessorId
        - AccountId
        - ExternalPaypointId
      title: ActivatedMerchantContent

```