> 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

# Paypoint Account NOC Received

POST 

Triggered when a notification of change (NOC) is received for a paypoint's bank account.

Notification name: `paypointaccountnocreceived`

Reference: https://docs.payabli.com/developers/webhooks/payops-paypoint-account-noc-received

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.paypointAccountNocReceived:
    post:
      operationId: subpackage_payOpsWebhooks.paypointAccountNocReceived
      summary: Paypoint Account NOC Received
      description: >-
        Triggered when a notification of change (NOC) is received for a
        paypoint's bank account.


        Notification name: `paypointaccountnocreceived`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PaypointAccountNocReceivedContent'
components:
  schemas:
    PaypointAccountNocReceivedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - PaypointAccountNocReceived
          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
        EntryPoint:
          type: string
          description: System entry point identifier
        ExternalPaypointId:
          type: string
          description: External paypoint system identifier
        Description:
          type: string
          description: Additional description, when applicable
        RoutingNumber:
          type:
            - string
            - 'null'
          description: Current bank routing number
        NewRoutingNumber:
          type:
            - string
            - 'null'
          description: Updated bank routing number
        AccountNumber:
          type:
            - string
            - 'null'
          description: Current bank account number
        NewAccountNumber:
          type:
            - string
            - 'null'
          description: Updated bank account number
        AccountType:
          type:
            - string
            - 'null'
          description: Payment account type
        NewAccountType:
          type:
            - string
            - 'null'
          description: Updated bank account type
      required:
        - Event
        - Paypoint
        - Text
        - ContactUs
        - EntryPoint
        - ExternalPaypointId
        - Description
        - RoutingNumber
        - NewRoutingNumber
        - AccountNumber
        - NewAccountNumber
        - AccountType
        - NewAccountType
      title: PaypointAccountNocReceivedContent

```