---
title: "List RFIs"
method: GET
path: "/v1/rfis"
tags: ["Request for Information (RFI)"]
---

# List RFIs

`GET /v1/rfis`

Returns a paginated list of RFIs raised against your UQPAY account. Use this to discover open RFIs that require your action and to review previously answered ones.

## Query parameters

- `page_size` integer, required
- `page_number` integer, required
- `status` 'SUBMITTED_PENDING' | 'REJECTED' | 'APPROVED' | 'ACTION_REQUIRED'

## Headers

- `x-on-behalf-of` string

## Response `200`

OK - Successfully listed RFIs.

- object
  - `total_pages` integer — The total pages of available items.
  - `total_items` integer — The total counts of available items.
  - `data` RFIsResponse[]
    - `account_id` string — A unique identifier of the account.
    - `rfi_id` string — A unique identifier of the RFI.
    - `status` 'SUBMITTED_PENDING' | 'REJECTED' | 'APPROVED' | 'ACTION_REQUIRED' — The current status of the RFI. - `ACTION_REQUIRED`: An answer is required from you. - `SUBMITTED_PENDING`: An answer has been submitted and is under review. - `APPROVED`: The submitted answer has been approved. - `REJECTED`: The submitted answer has been rejected; further action may be required.
    - `create_time` string — Creation time of the RFI.
    - `update_time` string — Last updated time of the RFI.
    - `request` object[] — The list of questions raised in this RFI and any answers already submitted.
      - `question` object
        - `key` string — The key identifying a specific question in the RFI request.
        - `comment` string — Human-readable description of the question, including any guidance from the reviewer.
        - `type` 'ATTACHMENT' — The type of question or answer item. `ATTACHMENT` indicates that one or more uploaded files are required.
      - `answer` AnswerItem
        - `key` string — The key that matches the corresponding `question.key`, used to link the answer with its specific question.
        - `type` 'ATTACHMENT' — The type of question or answer item. `ATTACHMENT` indicates that one or more uploaded files are required.
        - `attachments` string[] — Array of `file_id` values returned by [Upload A File](/account-center/v1.6/api-reference/upload-file).

---

[API](https://skmtc.dev/uqpay/apis/authentication-api.md) · [All operations](https://skmtc.dev/uqpay/apis/authentication-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/uqpay/authentication-api/revisions/cef532a10777/schema)
