> 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

# Saved Method Updated

POST 

Triggered when a customer's saved payment method is updated following a notification of change.

Notification name: `savedmethodupdated`

Reference: https://docs.payabli.com/developers/webhooks/payin-saved-method-updated

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payInWebhooks.savedMethodUpdated:
    post:
      operationId: subpackage_payInWebhooks.savedMethodUpdated
      summary: Saved Method Updated
      description: >-
        Triggered when a customer's saved payment method is updated following a
        notification of change.


        Notification name: `savedmethodupdated`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SavedMethodUpdatedContent'
components:
  schemas:
    SavedMethodUpdatedContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - SavedMethodUpdated
          description: Event type identifier
        Paypoint:
          type: string
          description: The name of the merchant/paypoint
        Text:
          type: string
          description: Human-readable description of the event
        NocCode:
          type: string
          description: Notification of change (NOC) code
        NocDescription:
          type: string
          description: Notification of change (NOC) description
        NewRoutingNumber:
          type: string
          description: Updated bank routing number
        NewAccountNumber:
          type: string
          description: Updated bank account number
        NewAccountType:
          type: string
          description: Updated bank account type
        Customer:
          type: string
          description: The customer name
        CustomerNumber:
          type: string
          description: Internal customer identifier
        CustomerEmail:
          type: string
          description: The customer's email address
        ContactUs:
          type: string
          description: Contact information string
      required:
        - Event
        - Paypoint
        - Text
        - NocCode
        - NocDescription
        - NewRoutingNumber
        - NewAccountNumber
        - NewAccountType
        - Customer
        - CustomerNumber
        - CustomerEmail
        - ContactUs
      title: SavedMethodUpdatedContent

```