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. Money Movement
  • 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. Money Movement

Create payout

POST
https://api.staging.vrtx.sa/cl/v1/payouts
Last modified:2025-12-03 07:59:44
Move funds from a business operational account to one or more wallets inside the closed-loop ecosystem.
This API enables businesses to distribute money internally, such as customer rewards, wallet top-ups, or supplier payments, without using any external payment rails.
The source will always be the business’s operational account.

Transaction Flow#

StepDescriptionAccount TypeDirection
1Debit the business operational account to reflect the outgoing paymentBusinessDEBIT (−)
2Credit the wallet account of the recipientWalletCREDIT (+)

Request

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

Body Params application/jsonRequired

Example
{
    "source_account_number": "950100010020",
    "destination_account_number": "850100010048",
    "amount": "10.00",
    "currency": "SAR",
    "external_reference": "PO-001357911441",
    "purpose": "Vendor settlement",
    "notes": "Process before noon"
}

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/payouts' \
--header 'Idempotency-Key: payout-req-123' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "source_account_number": "950100010020",
    "destination_account_number": "850100010048",
    "amount": "10.00",
    "currency": "SAR",
    "external_reference": "PO-001357911441",
    "purpose": "Vendor settlement",
    "notes": "Process before noon"
}'

Responses

đŸŸ¢201Created
application/json
Created
Body

Example
{
    "id": "b6327558-741e-411c-866b-0eec8ea26005",
    "sender_account_number": "054200001011",
    "receiver_account_number": "054200002027",
    "amount": "10.00",
    "currency": "SAR",
    "external_reference": "PO-0013579",
    "purpose": "Vendor settlement",
    "notes": "Process before noon",
    "status": "SUCCESS",
    "created_at": "2025-10-25T14:34:04.254Z"
}
đŸŸ 400Bad Request
đŸŸ 401Unauthorized
đŸŸ 403Forbidden
Modified at 2025-12-03 07:59:44
Previous
Create fund
Next
Get payout
Built with