vrtx Docs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIsCard Simulator
SDK APIs
  • Coming Soon!
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIsCard Simulator
SDK APIs
  • Coming Soon!
  1. Businesses
  • Welcome 👋
  • Get Started
  • Authentication
  • Responses
  • Pagination
  • Auth
    • Token
      POST
  • Businesses
    • List businesses
      GET
    • Create business
      POST
  • Money Movement
    • Create fund
      POST
    • Create payout
      POST
    • Get payout
      GET
    • Create refund
      POST
    • Create transfer
      POST
    • Create withdrawal
      POST
  • Labels
    • List labels
      GET
    • Create label
      POST
  • Transactions
    • List transactions
      GET
    • Get transaction
      GET
    • List wallet transactions
      GET
  • Wallets
    • List wallets
      GET
    • Create wallet
      POST
    • Lookup wallet
      GET
    • Update wallet
      PATCH
    • Get wallet
      GET
    • Get wallet balance
      GET
    • Remove label
      DELETE
    • Assign label
      PUT
  • Wallet Statements
    • Retrieve wallet statement (preview)
  • Webhooks
    • Register webhook endpoint (preview)
    • List webhook endpoints (preview)
  1. Businesses

Create business

POST
https://api.staging.vrtx.sa/cl/v1/businesses
Last modified:2025-12-03 07:59:44
Create a business entity in the closed-loop ecosystem.
When a business is created, the system automatically provisions an operational account and the corresponding wallet structure required for managing funds internally.
This setup enables the business to participate in the closed-loop environment — allowing wallet creation, payouts, and internal transfers without connecting to external banking rails.

Account Structure#

Account TypeDescriptionOwnershipExample
Clearance AccountTracks all reconciliation and settlement inflows/outflows.System / Business000019283740
Operational AccountHolds the business’ active funds for payouts and internal transfers.Business100019283740

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Example
{
    "unified_number": "7009873774",
    "cr_number": "1234567811",
    "official_name_ar": "شركة فرتكس العربية",
    "official_name_en": "Vrtx Arabia Trading Co.",
    "short_name_ar": "فرتكس العربية",
    "short_name_en": "Vrtx KSA",
    "cr_expiry_date": "2025-12-31T00:00:00.000Z",
    "email": "ops@vrtx.sa",
    "mobile": "+966501234567",
    "status": "ACTIVE"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.staging.vrtx.sa/cl/v1/businesses' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "unified_number": "7009873774",
    "cr_number": "1234567811",
    "official_name_ar": "شركة فرتكس العربية",
    "official_name_en": "Vrtx Arabia Trading Co.",
    "short_name_ar": "فرتكس العربية",
    "short_name_en": "Vrtx KSA",
    "cr_expiry_date": "2025-12-31T00:00:00.000Z",
    "email": "ops@vrtx.sa",
    "mobile": "+966501234567",
    "status": "ACTIVE"
}'

Responses

🟢201Created
application/json
OK
Body

Example
{
    "id": "85fee10b-e47f-46c6-b5c3-e0d34c5060b3",
    "unified_number": "7000102991",
    "cr_number": "1234567897",
    "official_name_ar": "شركة فرتكس العربية",
    "official_name_en": "Vrtx Arabia Trading Co.",
    "short_name_ar": "فرتكس العربية",
    "short_name_en": "Vrtx KSA",
    "cr_expiry_date": "2025-12-31T00:00:00.000Z",
    "email": "ops@vrtx.sa",
    "mobile": "+966501234567",
    "prefix3": "103",
    "account_number": "010300006011",
    "status": "ACTIVE",
    "created_at": "2025-10-25T12:35:16.446Z",
    "updated_at": "2025-10-25T12:35:16.446Z"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-12-03 07:59:44
Previous
List businesses
Next
Create fund
Built with