> ## Documentation Index
> Fetch the complete documentation index at: https://docs.momentco.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Payment Received

> Triggered when a payment is successfully received via a Payment Page.




## OpenAPI

````yaml WEBHOOK payment_page.payment_received
openapi: 3.1.0
info:
  title: Moment Payment Pages API
  version: 1.0.0
  description: >
    # Moment Payment Pages API


    The Moment Payment Pages API enables merchants to create, manage, and track
    payment pages for collecting payments from customers. This RESTful API
    provides comprehensive functionality for payment page lifecycle management
    with enterprise-grade reliability and security.
  contact:
    name: Moment
    url: https://momentco.net
    email: support@momentco.net
servers:
  - url: https://api.momentpay.net
    description: Production server
security:
  - BearerAuth: []
tags:
  - name: Payment Pages
    description: >
      Operations for managing payment pages. Payment pages provide a secure,

      customizable interface for collecting payments with optional customer data
      collection.
  - name: Payment Page Transactions
    description: >
      Operations for retrieving transaction history and payment details
      associated

      with payment pages.
  - name: Webhooks
    description: >
      Webhook events that notify your application of payment events in
      real-time.

      Configure webhook endpoints in your merchant dashboard to receive these
      notifications.
externalDocs:
  description: Complete API Documentation
  url: https://docs.momentco.io/
paths: {}
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >
        Authentication using Bearer tokens. Include your API key in the
        Authorization header.


        **Key Types:**

        - **Test Keys**: `sk_test_*` for development and testing

        - **Live Keys**: `sk_*` for production environments

        - **Public Keys**: `pk_test_*` or `pk_*` for client-side operations



        > 📩 **Need access?** [Contact Support](/documentation/support) to
        request your API keys.



        **Usage:**

        ```http

        Authorization: Bearer sk_test_4eC39HqLyjWDarjtT1zdp7dc

        ```

````