Skip to main content
GET
/
v1
/
rfis
List RFIs
curl --request GET \
  --url https://api-sandbox.uqpaytech.com/api/v1/rfis \
  --header 'x-auth-token: <api-key>'
{
  "total_pages": 1,
  "total_items": 10,
  "data": [
    {
      "account_id": "f5bb6498-552e-40a5-b14b-616aa04ac1c1",
      "rfi_id": "f846c1c3-8e8e-4560-b1a8-5318e858df1c",
      "status": "SUBMITTED_PENDING",
      "create_time": "2024-11-08T17:17:32+08:00",
      "update_time": "2024-11-09T17:17:32+08:00",
      "request": [
        {
          "question": {
            "key": "basic_certificate_of_incorporation",
            "comment": "Company Registration Documentation: includes company name, registered address, business license, etc.",
            "type": "ATTACHMENT"
          },
          "answer": {
            "key": "basic_certificate_of_incorporation",
            "type": "ATTACHMENT",
            "attachments": [
              "63d75f6d-97a3-478c-bdbf-b050c650d72a"
            ]
          }
        }
      ]
    }
  ]
}

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.

Authorizations

x-auth-token
string
header
required

The API token for login provided by UQPay.

Headers

x-on-behalf-of
string

The value set to the connected account's ID. More information at List Connected Accounts

Query Parameters

page_size
integer
required

The maximum number of items to return per page. This number can be between 10 - 100, and will default to 10

Required range: x >= 1
Example:

10

page_number
integer
required

The page number to retrieve the next set of items. The number has to be greater than 1, and will default to 1

Required range: x >= 1
Example:

1

status
enum<string>

Filter the result list by RFI status.

Available options:
SUBMITTED_PENDING,
REJECTED,
APPROVED,
ACTION_REQUIRED

Response

200 - application/json

OK - Successfully listed RFIs.

total_pages
integer

The total pages of available items.

Example:

1

total_items
integer

The total counts of available items.

Example:

10

data
object[]