vrtx Docs
Core APIs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIs
Card Simulator
SDK APIs
SDK APIs
  • Coming Soon!
Core APIs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIs
Card Simulator
SDK APIs
SDK APIs
  • Coming Soon!
  1. Labels
vrtx Docs
  • 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 reversal
      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)
Core APIs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIs
Card Simulator
SDK APIs
SDK APIs
  • Coming Soon!
Core APIs
Core APIs
  • Start
  • Onboarding
  • Wallet
  • Payouts
  • Cards
  • Transactions
Closed loop APIs
Card Simulator
SDK APIs
SDK APIs
  • Coming Soon!
  1. Labels

Create label

POST
https://api.staging.vrtx.sa/cl/v1/labels
Last modified:2025-12-03 07:59:44
Create a new label that can be assigned to wallets, business accounts, or transactions within the closed-loop ecosystem.
Labels help classify and organize financial entities..
This endpoint is typically used by administrators or internal systems to define new categories for tagging and reporting.

Request

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

Example
{
    "business_id": "01df2b9e-e17b-4372-a589-a627fc2c6929",
    "name": "VAT"
}

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/labels' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "business_id": "01df2b9e-e17b-4372-a589-a627fc2c6929",
    "name": "VAT"
}'

Responses

🟢201Created
application/json
Created
Body

Example
{
    "id": "f6ff1999-d2b3-41fa-a7a9-dfd6b88b4e51",
    "business_id": "2bb58ca6-1b9a-47b4-ab4d-b2996f0498f3",
    "name": "Fees Wallet - رسوم",
    "created_at": "2025-10-25T14:44:06.296Z"
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
Modified at 2025-12-03 07:59:44
Previous
List labels
Next
List transactions
Built with