1. Whitelist
Vrtx Docs
  • Welcome đź‘‹
  • Get Started
  • Auth
    • Token
      POST
  • Payouts
    • Create payout
      POST
    • Get payout status
      GET
    • Get payout status
      GET
    • Create bulk payout
      POST
    • Get bulk payout status
      GET
    • Get bulk payout status
      GET
    • Get batch report
      GET
    • Get batch report
      GET
  • Business Configurations
    • Get business configurations
      GET
  • Whitelist
    • Add whitelist entries
      POST
    • Get whitelist entries
      GET
    • Delete whitelist entries
      DELETE
Client APIs
Vrtx Closed loopCard Simulator
Client APIs
Vrtx Closed loopCard Simulator
  1. Whitelist

Get whitelist entries

GET
https://api.staging.vrtx.sa/whitelist/
Last modified:2026-04-16 11:21:19
Returns a paginated list of users on the onboarding whitelist.
Query parameters:
added_on (optional): Filter to entries added on this date (YYYY-MM-DD).
page (optional): Page number, starting at 1. Default: 1.
limit (optional): Entries per page, 1–100. Default: 50.
Each entry returns its identifier (national_id or external_reference)
and the created_at timestamp in ISO 8601 format.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200
application/json
Default Response
Body

đźź 400
đźź 401
đźź 403
đźź 404
đźź 405
đźź 409
đźź 410
đźź 422
đźź 429
đź”´500
đź”´501
đź”´503
đź”´504
đź”´505
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.staging.vrtx.sa/whitelist/?added_on&page&limit' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "white_listed_users": [
        {
            "national_id": "string",
            "external_reference": "string",
            "created_at": "string"
        }
    ],
    "total_count": 0,
    "total_pages": 0,
    "current_page": 0
}
Modified at 2026-04-16 11:21:19
Previous
Add whitelist entries
Next
Delete whitelist entries
Built with