> 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

# Card Updater Complete

POST 

Triggered when the card updater finishes updating a stored card.

Notification name: `cardupdatercomplete`

Reference: https://docs.payabli.com/developers/webhooks/payops-card-updater-complete

## OpenAPI 3.1 Webhook Specification

```yaml
openapi: 3.1.0
info:
  title: webhooks-oas
  version: 1.0.0
paths: {}
webhooks:
  subpackage_payOpsWebhooks.cardUpdaterComplete:
    post:
      operationId: subpackage_payOpsWebhooks.cardUpdaterComplete
      summary: Card Updater Complete
      description: |-
        Triggered when the card updater finishes updating a stored card.

        Notification name: `cardupdatercomplete`
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CardUpdaterCompleteContent'
components:
  schemas:
    CardUpdaterCompleteContent:
      type: object
      properties:
        Event:
          type: string
          enum:
            - CardUpdaterComplete
          description: Event type identifier
        Identifier:
          type: string
          description: Unique identifier of the stored payment method
        ResultCode:
          type: string
          description: Result code
        ResultText:
          type: string
          description: Result code description
        NewExpirationMonth:
          type: string
          description: Updated card expiration month
        NewExpirationYear:
          type: string
          description: Updated card expiration year
        Last4Digits:
          type: string
          description: Last four digits of the updated card
        CardBrand:
          type: string
          description: Card brand
        PaypointId:
          type: integer
          description: Unique identifier of the paypoint
        PaypointName:
          type: string
          description: The name of the paypoint
        OrganizationName:
          type: string
          description: The name of the organization
        CustomerId:
          type: string
          description: The unique identifier for the customer
      required:
        - Event
        - Identifier
        - ResultCode
        - ResultText
        - NewExpirationMonth
        - NewExpirationYear
        - Last4Digits
        - CardBrand
        - PaypointId
        - PaypointName
        - OrganizationName
        - CustomerId
      title: CardUpdaterCompleteContent

```