1. Wallets
Vrtx Docs
  • Welcome đź‘‹
  • Get Started
  • Auth
    • Token
      POST
  • Payouts
    • Create payout
      POST
    • Get payout status
      GET
    • Create bulk payout
      POST
    • Get bulk payout status
      GET
    • Get batch report
      GET
  • Transactions
    • Business Accounts
      • Get business account balance
      • List business transactions
      • Get transaction details by reference
  • Whitelist
    • Add whitelist entries
      POST
    • Get whitelist entries
      GET
    • Delete whitelist entries
      DELETE
  • Wallets
    • List Wallets
      GET
    • Get Wallet
      GET
Vrtx APIs
Vrtx Closed loop
Vrtx APIs
Vrtx Closed loop
  1. Wallets

Get Wallet

GET
https://api.sandbox.vrtx.sa/customers/{customer_id}
Last modified:2026-08-23 18:31:25
Retrieves a single customer (vrtx wallet) owned by the authenticated business.
A customer_id that belongs to another business is reported as CUSTOMER_NOT_FOUND, identically to one that does not exist — confirming the id is real would itself leak across businesses.

Request

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

Responses

🟢200
application/json
Default Response
Bodyapplication/json

đźź 400
đźź 401
đźź 403
đźź 404
đźź 405
đźź 409
đźź 410
đźź 422
đźź 429
đź”´500
đź”´501
đź”´503
đź”´504
đź”´505
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.sandbox.vrtx.sa/customers/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "customer_id": "cust_00154344290ab",
    "external_reference": "E0016",
    "full_name": "Ahmed Al-Otaibi",
    "mobile_number": "9665XXXX4290",
    "status": "active",
    "wallet_account_number": "000100012345",
    "wallet_iban": "SA110292929000000100012345",
    "currency": "SAR",
    "created_at": "2026-06-14T09:32:03.907Z"
}
Modified at 2026-08-23 18:31:25
Previous
List Wallets
Built with