> ## 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.

# 入驻RFI

> 当入驻流程中需要补充材料（RFI）时发送。

## 事件类型

| 事件类型                  | 描述                     |
| --------------------- | ---------------------- |
| `rfi.action_required` | 入驻过程中产生了一个RFI，需要您采取行动。 |

## 使用指南

收到该通知后，请按以下步骤处理：

<Steps>
  <Step title="获取RFI详情">
    使用通知中提供的 `rfi_id` 调用 [Retrieve RFI](/zh/account-center/v1.6/api-reference/retrieve-rfi) API，返回当前RFI所需的文件信息。
  </Step>

  <Step title="上传所需文件">
    通过 [Upload A File](/zh/account-center/v1.6/api-reference/upload-file) API上传指定文件。上传成功后将返回 `file_id`。
  </Step>

  <Step title="通过 Answer RFI 提交文件">
    使用 [Answer RFI](/zh/account-center/v1.6/api-reference/answer-rfi) API 将 `file_id` 提交给UQPAY。

    请确保请求中的 `answer.key` 与 Retrieve RFI 响应中返回的 `question.key` 一致。
  </Step>
</Steps>


## OpenAPI

````yaml webhooks-connect.yaml webhook onboardingRfi
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: {}

````