> 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 vendor's saved payment method is updated following a notification of change.

Notification name: `payoutsavedmethodupdated`

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

## OpenAPI 3.1 Webhook Specification

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


        Notification name: `payoutsavedmethodupdated`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PayoutSavedMethodUpdatedContent'
components:
  schemas:
    PayoutSavedMethodUpdatedContent:
      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
        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: Bank routing number
        NewRoutingNumber:
          type:
            - string
            - 'null'
          description: Updated bank routing number
        AccountNumber:
          type:
            - string
            - 'null'
          description: Bank account number
        NewAccountNumber:
          type:
            - string
            - 'null'
          description: Updated bank account number
        AccountType:
          type:
            - string
            - 'null'
          description: Bank 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: PayoutSavedMethodUpdatedContent

```