vt_sales_api

1.0.0 • Public • Published

vt_sales_api

VtSalesApi - JavaScript client for vt_sales_api API Aggregation and and Orchestration layer for VT Sales, Leads and Payment clients. This SDK is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install vt_sales_api --save

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var VtSalesApi = require('vt_sales_api');

var api = new VtSalesApi.CreditCardsApi()

var clientId = "clientId_example"; // {String} UUID of client

var creditCardId = "creditCardId_example"; // {String} UUID of client credit card


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.clientsClientIdCreditCardsCreditCardIdDelete(clientId, creditCardId, callback);

Documentation for API Endpoints

All URIs are relative to http://vt-sales-api.varsitytutors.com/v1

Class Method HTTP request Description
VtSalesApi.CreditCardsApi clientsClientIdCreditCardsCreditCardIdDelete DELETE /clients/{clientId}/credit_cards/{creditCardId} Delete a credit card
VtSalesApi.CreditCardsApi clientsClientIdCreditCardsCreditCardIdGet GET /clients/{clientId}/credit_cards/{creditCardId} Get a credit card
VtSalesApi.CreditCardsApi clientsClientIdCreditCardsCreditCardIdPut PUT /clients/{clientId}/credit_cards/{creditCardId} Update a credit card
VtSalesApi.CreditCardsApi clientsClientIdCreditCardsGet GET /clients/{clientId}/credit_cards Get a list of a client's credit cards
VtSalesApi.CreditCardsApi clientsClientIdCreditCardsPost POST /clients/{clientId}/credit_cards Save a new credit card
VtSalesApi.PackagesApi clientsClientIdAvailablePackagesGet GET /clients/{clientId}/availablePackages Get available packages for a client
VtSalesApi.PackagesApi clientsClientIdPriceLockPost POST /clients/{clientId}/price_lock Lock prices for a client
VtSalesApi.PackagesApi leadsLeadIdAvailablePackagesGet GET /leads/{leadId}/availablePackages Get available packages for a lead
VtSalesApi.PackagesApi leadsLeadIdPriceLockPost POST /leads/{leadId}/price_lock Lock prices for a lead
VtSalesApi.PaymentsApi clientsClientIdPaymentsPurchasePost POST /clients/{clientId}/payments/purchase Process a payment for a client
VtSalesApi.PaymentsApi leadsLeadIdPaymentsPurchasePost POST /leads/{leadId}/payments/purchase Process a payment for a lead and Convert to client
VtSalesApi.StubsApi clientsClientIdGet GET /clients/{clientId}
VtSalesApi.StubsApi clientsGet GET /clients
VtSalesApi.StubsApi leadsGet GET /leads
VtSalesApi.StubsApi leadsLeadIdGet GET /leads/{leadId}

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.

Readme

Keywords

none

Package Sidebar

Install

npm i vt_sales_api

Weekly Downloads

2

Version

1.0.0

License

Unlicense

Last publish

Collaborators

  • bennydtown