VendexApp Docs
  • Overview
  • DEVELOPER
    • Cloud API for App
      • Client authentication
      • User
      • Account
      • Transaction
      • Vending machine
      • Payment gateway
    • Cloud API for Sale Point
      • Client authentication
      • Account
      • Transaction
      • Sale point
    • QR Code format
    • Real Time Communication (RTC) API
      • Transaction
Powered by GitBook
On this page

Was this helpful?

  1. DEVELOPER
  2. Cloud API for Sale Point

Account

Add money

POST https://api.vendex.app/api_merchant/account/add_money/

Headers

Name
Type
Description

Api-Client-Token

string

Client token obtained from client authentication method.

Api-Sale-Point-Token

string

Sale point token obtain from node authentication method.

Content-Type

string

Content type set as application/json.

{
    "status": "success",
    "detail": "User credit added successfully"
}
{
    "amount": 100.00,
    "currency_code": "USD",
    "sale_point_ref": "mpmfcvec", // Sale point own unique reference
    "authorization_signature": "5nbv84e5f81dacd2b844c28a7e674cd13961e821c9b559a08b926c736fc5aaff"
}

PreviousClient authenticationNextTransaction

Last updated 4 years ago

Was this helpful?