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

# Account Status

> Published when an account's onboarding state is created or updated.

## Event Types

| Event Type                  | Description                                                                                                                       |
| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------- |
| `onboarding.account.create` | A new account finished its initial onboarding flow.                                                                               |
| `onboarding.account.update` | An existing account's onboarding data was updated — for example a status change, information correction, or verification outcome. |

The `data` object mirrors the shape of the [Retrieve Account](/account-center/v1.6/api-reference/retrieve-account) API response.

<Warning>
  **`verification_status` enum differs from the API.** In this webhook payload the
  rejected and returned states are delivered as `REJECTED` and `RETURNED`, whereas the
  [Retrieve Account](/account-center/v1.6/api-reference/retrieve-account) and
  [List Connected Accounts](/account-center/v1.6/api-reference/list-connected-accounts)
  API responses return `REJECT` and `RETURN`. All other values (`PENDING`, `APPROVED`,
  `EXPIRED`) are identical.
</Warning>


## OpenAPI

````yaml webhooks-connect.yaml webhook accountStatus
openapi: 3.1.0
info:
  title: Account Center Webhooks
  version: 1.6.0
  description: |
    Webhook events for the Account Center product. UQPAY sends these events to
    your registered webhook endpoint as HTTP POST requests with a JSON body.

    All events share a common envelope (`event_id`, `event_name`, `event_type`,
    `source_id`, `version`) and carry event-specific data in the `data` field.
servers: []
security: []
paths: {}

````