nts-gemini-javascript-client

0.1.0 • Public • Published

this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail

ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail - JavaScript client for this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) This SDK is automatically generated by the Swagger Codegen project:

  • API version: 18.3.0
  • Package version: 18.3.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 this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail') in javascript files from the directory you ran the last command above from.

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, that's to say your javascript file where you actually use this library):

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 ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail = require('this_is_the_documentation_of_the_rest_interfaces_provided_by_nts_retail');
 
var defaultClient = ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApiClient.instance;
 
// Configure OAuth2 access token for authorization: gemini_auth
var gemini_auth = defaultClient.authentications['gemini_auth'];
gemini_auth.accessToken = "YOUR ACCESS TOKEN"
 
var api = new ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi()
 
var body = new ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationSettingJson(); // {ApplicationSettingJson} The item to insert.
 
var opts = { 
  'transactionId': "transactionId_example", // {String} A unique transaction ID used for idempotent inserts.
  'shortToken': "shortToken_example" // {String} A temporary short token which can be used as an alternative to the JWT.
};
 
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.createApplicationSetting(body, opts, callback);
 

Documentation for API Endpoints

All URIs are relative to http://localhost/gemini-web/rest

Class Method HTTP request Description
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi createApplicationSetting POST /application/application-settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi deleteApplicationSetting DELETE /application/application-settings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi fullUpdateApplication PUT /application/applications/{id} full update of an application
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi getAllApplicationSettings GET /application/application-settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi getAllApplications GET /application/applications get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi getSingleApplication GET /application/applications/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi getSingleApplicationSetting GET /application/application-settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi updateApplication POST /application/applications/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi updateApplicationSetting PUT /application/application-settings/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ApplicationApi updatePartialApplicationSetting POST /application/application-settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi createBillPaymentCartPosition POST /bill-payment/cart-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi createBillPaymentOrderPosition POST /bill-payment/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi createBillPaymentProduct POST /bill-payment/products insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi deleteBillPaymentCartPosition DELETE /bill-payment/cart-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi deleteBillPaymentOrderPosition DELETE /bill-payment/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi deleteBillPaymentProduct DELETE /bill-payment/products/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getAllBillPaymentCartPositions GET /bill-payment/cart-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getAllBillPaymentOrderPositions GET /bill-payment/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getAllBillPaymentProducts GET /bill-payment/products get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getAllBillPaymentTransactionPositions GET /bill-payment/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getSingleBillPaymentCartPosition GET /bill-payment/cart-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getSingleBillPaymentOrderPosition GET /bill-payment/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getSingleBillPaymentProduct GET /bill-payment/products/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi getSingleBillPaymentTransactionPosition GET /bill-payment/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updateBillPaymentCartPosition PUT /bill-payment/cart-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updateBillPaymentOrderPosition PUT /bill-payment/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updateBillPaymentProduct PUT /bill-payment/products/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updatePartialBillPaymentCartPosition POST /bill-payment/cart-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updatePartialBillPaymentOrderPosition POST /bill-payment/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.BillPaymentApi updatePartialBillPaymentProduct POST /bill-payment/products/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCart POST /cart/carts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCart2BundleOffer POST /cart/cart2bundleoffer insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCart2BundlePart POST /cart/cart2bundlepart insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCart2ProductOffer POST /cart/cart2productoffer insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCartAddressData POST /cart/address-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCartBankAccountData POST /cart/bank-account-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCartCheck POST /cart/cart-checks insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi createCartCustomerData POST /cart/customer-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCart2BundleOffer DELETE /cart/cart2bundleoffer/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCart2BundlePart DELETE /cart/cart2bundlepart/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCart2ProductOffer DELETE /cart/cart2productoffer/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCartAddressData DELETE /cart/address-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCartBankAccountData DELETE /cart/bank-account-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCartCheck DELETE /cart/cart-checks/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi deleteCartCustomerData DELETE /cart/customer-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCart2BundleOffer GET /cart/cart2bundleoffer get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCart2BundlePart GET /cart/cart2bundlepart get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCart2ProductOffer GET /cart/cart2productoffer get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCartAddressData GET /cart/address-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCartBankAccountData GET /cart/bank-account-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCartCheckErrors GET /cart/cart-check-errors get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCartCustomerData GET /cart/customer-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCartTaxData GET /cart/tax-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getAllCarts GET /cart/carts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCart GET /cart/carts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCart2BundleOffer GET /cart/cart2bundleoffer/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCart2BundlePart GET /cart/cart2bundlepart/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCart2ProductOffer GET /cart/cart2productoffer/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartAddressData GET /cart/address-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartBankAccountData GET /cart/bank-account-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartCheck GET /cart/cart-checks/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartCheckError GET /cart/cart-check-errors/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartCustomerData GET /cart/customer-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi getSingleCartTaxData GET /cart/tax-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCart PUT /cart/carts/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCart2BundleOffer PUT /cart/cart2bundleoffer/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCart2BundlePartData PUT /cart/cart2bundlepart/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCartAddressData PUT /cart/address-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCartBankAccountData PUT /cart/bank-account-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updateCartCustomerData PUT /cart/customer-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCart POST /cart/carts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCart2BundleOffer POST /cart/cart2bundleoffer/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCart2BundlePartData POST /cart/cart2bundlepart/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCartAddressData POST /cart/address-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCartBankAccountData POST /cart/bank-account-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartApi updatePartialCartCustomerData POST /cart/customer-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi createCartTransaction POST /cart-retail/cart-transactions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi getAllCartTransactions GET /cart-retail/cart-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CartRetailApi getSingleCartTransaction GET /cart-retail/cart-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi createConfiguration POST /configuration/configs insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi createConfigurationTypeTemplate POST /configuration/configs/templates/types insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi createSetting POST /configuration/settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi createTypeSetting POST /configuration/configs/templates/types/{templateId}/settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi deleteConfiguration DELETE /configuration/configs/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi deleteSetting DELETE /configuration/settings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi fullUpdateConfiguration PUT /configuration/configs/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi fullUpdateConfigurationTypeTemplate PUT /configuration/configs/templates/types/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi fullUpdateSetting PUT /configuration/settings/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllApplicationConfigurations GET /configuration/application-configurations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllConfigurationTypeTemplates GET /configuration/configs/templates/types get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllConfigurations GET /configuration/configs get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllSettingHistoryEntries GET /configuration/settingshistory get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllSettingHistoryMetadataEntries GET /configuration/settingshistorymetadata get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllSettings GET /configuration/settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getAllTypeSettings GET /configuration/configs/templates/types/{templateId}/settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleApplicationConfiguration GET /configuration/application-configurations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleConfiguration GET /configuration/configs/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleConfigurationSettingHistory GET /configuration/settingshistory/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleConfigurationTypeTemplate GET /configuration/configs/templates/types/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleSetting GET /configuration/settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi getSingleTypeSetting GET /configuration/configs/templates/types/{templateId}/settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updateApplicationConfiguration PUT /configuration/application-configurations/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updateConfiguration POST /configuration/configs/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updateConfigurationTypeTemplate POST /configuration/configs/templates/types/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updatePartialApplicationConfiguration POST /configuration/application-configurations/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updateSetting POST /configuration/settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConfigurationApi updateTypeSetting POST /configuration/configs/templates/types/{templateId}/settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi createConsultingTopic POST /consulting-topic/consulting-topics insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi createConsultingTopicOffer POST /consulting-topic/consulting-topic-offers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi deleteConsultingTopic DELETE /consulting-topic/consulting-topics/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi deleteConsultingTopicOffer DELETE /consulting-topic/consulting-topic-offers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi getAllConsultingTopicOffers GET /consulting-topic/consulting-topic-offers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi getAllConsultingTopics GET /consulting-topic/consulting-topics get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi getSingleConsultingTopic GET /consulting-topic/consulting-topics/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi getSingleConsultingTopicOffer GET /consulting-topic/consulting-topic-offers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi updateConsultingTopic PUT /consulting-topic/consulting-topics/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi updateConsultingTopicOffer PUT /consulting-topic/consulting-topic-offers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi updatePartialConsultingTopic POST /consulting-topic/consulting-topics/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ConsultingTopicApi updatePartialConsultingTopicOffer POST /consulting-topic/consulting-topic-offers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi createAddress POST /customer/addresses insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi createBankAccount POST /customer/bank-accounts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi createCustomer POST /customer/customers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi createCustomerContract POST /customer/contracts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi deleteAddress DELETE /customer/addresses/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi deleteBankAccount DELETE /customer/bank-accounts/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi deleteCustomer DELETE /customer/customers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi deleteCustomerContract DELETE /customer/contracts/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getAllAddresses GET /customer/addresses get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getAllBankAccounts GET /customer/bank-accounts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getAllCustomerContracts GET /customer/contracts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getAllCustomers GET /customer/customers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getSingleAddress GET /customer/addresses/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getSingleBankAccount GET /customer/bank-accounts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getSingleCustomer GET /customer/customers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi getSingleCustomerContract GET /customer/contracts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi searchCustomers GET /customer/search get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updateAddress PUT /customer/addresses/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updateBankAccount PUT /customer/bank-accounts/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updateCustomer PUT /customer/customers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updateCustomerContract PUT /customer/contracts/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updatePartialAddress POST /customer/addresses/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updatePartialBankAccount POST /customer/bank-accounts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updatePartialCustomer POST /customer/customers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.CustomerApi updatePartialCustomerContract POST /customer/contracts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi createCartDiscountData POST /cart/discount-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi createDiscount POST /discount/discounts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi createDiscount2DiscountOffer POST /discount/discount-offers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi createDiscountOffer POST /discount/offers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi deleteCartDiscountData DELETE /cart/discount-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi deleteDiscount DELETE /discount/discounts/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi deleteDiscount2DiscountOffer DELETE /discount/discount-offers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi deleteDiscountOffer DELETE /discount/offers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getAllCartDiscountData GET /cart/discount-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getAllDiscount2DiscountOffers GET /discount/discount-offers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getAllDiscountOffers GET /discount/offers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getAllDiscounts GET /discount/discounts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getSingleCartDiscountData GET /cart/discount-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getSingleDiscount GET /discount/discounts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getSingleDiscount2DiscountOffer GET /discount/discount-offers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi getSingleDiscountOffer GET /discount/offers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updateCartDiscountData PUT /cart/discount-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updateDiscount PUT /discount/discounts/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updateDiscount2DiscountOffer PUT /discount/discount-offers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updateDiscountOffer PUT /discount/offers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updatePartialCartDiscountData POST /cart/discount-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updatePartialDiscount POST /discount/discounts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updatePartialDiscount2DiscountOffer POST /discount/discount-offers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.DiscountApi updatePartialDiscountOffer POST /discount/offers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ElasticsearchApi create POST /modulemanagement/elasticsearch/{index}/{type} Write message
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi createEtopupCartPosition POST /etopup/cart-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi createEtopupOrderPosition POST /etopup/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi createEtopupProduct POST /etopup/products insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi deleteEtopupCartPosition DELETE /etopup/cart-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi deleteEtopupOrderPosition DELETE /etopup/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi deleteEtopupProduct DELETE /etopup/products/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getAllEtopupCartPositions GET /etopup/cart-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getAllEtopupOrderPositions GET /etopup/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getAllEtopupProducts GET /etopup/products get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getAllEtopupTransactionPositions GET /etopup/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getSingleEtopupCartPosition GET /etopup/cart-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getSingleEtopupOrderPosition GET /etopup/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getSingleEtopupProduct GET /etopup/products/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi getSingleEtopupTransactionPosition GET /etopup/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updateEtopupCartPosition PUT /etopup/cart-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updateEtopupOrderPosition PUT /etopup/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updateEtopupProduct PUT /etopup/products/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updatePartialEtopupCartPosition POST /etopup/cart-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updatePartialEtopupOrderPosition POST /etopup/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EtopupApi updatePartialEtopupProduct POST /etopup/products/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi createEvoucherOrderPosition POST /evoucher/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi createEvoucherProduct POST /evoucher/products insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi deleteEvoucherOrderPosition DELETE /evoucher/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi deleteEvoucherProduct DELETE /evoucher/products/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getAllEvoucherOrderPositions GET /evoucher/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getAllEvoucherProducts GET /evoucher/products get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getAllEvoucherTransactionPositions GET /evoucher/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getSingleEvoucherOrderPosition GET /evoucher/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getSingleEvoucherProduct GET /evoucher/products/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi getSingleEvoucherTransactionPosition GET /evoucher/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi updateEvoucherOrderPosition PUT /evoucher/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi updateEvoucherProduct PUT /evoucher/products/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi updatePartialEvoucherOrderPosition POST /evoucher/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.EvoucherApi updatePartialEvoucherProduct POST /evoucher/products/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi createCertificate POST /fiscalization/certificates insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi createFiscalizationUnit POST /fiscalization/fiscalization-units insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi createFiscalizationUnit2Certificate POST /fiscalization/fiscalization-unit-certificates insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi createInspectionReceipt POST /fiscalization/inspection-receipts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi createSignatureProvider POST /fiscalization/signature-providers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi deleteFiscalizationUnit DELETE /fiscalization/fiscalization-units/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi deleteFiscalizationUnit2Certificate DELETE /fiscalization/fiscalization-unit-certificates/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi deleteSignatureProvider DELETE /fiscalization/signature-providers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllCertificates GET /fiscalization/certificates get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllFiscalizationTransactions GET /fiscalization/fiscalization-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllFiscalizationUnit2Certificates GET /fiscalization/fiscalization-unit-certificates get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllFiscalizationUnits GET /fiscalization/fiscalization-units get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllInspectionReceipts GET /fiscalization/inspection-receipts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllSignatureProviderStrategies GET /fiscalization/signature-provider-strategies get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getAllSignatureProviders GET /fiscalization/signature-providers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getDataCollectionProtocol GET /fiscalization/data-collection-protocols get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleCertificate GET /fiscalization/certificates/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleFiscalizationTransaction GET /fiscalization/fiscalization-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleFiscalizationUnit GET /fiscalization/fiscalization-units/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleFiscalizationUnit2Certificate GET /fiscalization/fiscalization-unit-certificates/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleInspectionReceipt GET /fiscalization/inspection-receipts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleSignatureProvider GET /fiscalization/signature-providers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi getSingleSignatureProviderStrategy GET /fiscalization/signature-provider-strategies/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi updateFiscalizationUnit PUT /fiscalization/fiscalization-units/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi updatePartialFiscalizationUnit POST /fiscalization/fiscalization-units/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi updatePartialSignatureProvider POST /fiscalization/signature-providers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.FiscalizationApi updateSignatureProvider PUT /fiscalization/signature-providers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi createGoodsHandoverOrder POST /goods-handover/orders insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi createGoodsHandoverOrderPosition POST /goods-handover/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi createGoodsHandoverOrderPositionSerial POST /goods-handover/order-position-serials insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi createGoodsHandoverOrderTransaction POST /goods-handover/order-transactions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi deleteGoodsHandoverOrder DELETE /goods-handover/orders/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi deleteGoodsHandoverOrderPosition DELETE /goods-handover/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi deleteGoodsHandoverOrderPositionSerial DELETE /goods-handover/order-position-serials/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverOrderPositionSerials GET /goods-handover/order-position-serials get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverOrderPositions GET /goods-handover/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverOrderTransactions GET /goods-handover/order-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverOrders GET /goods-handover/orders get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverTransactionPositionSerials GET /goods-handover/transaction-position-serials get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverTransactionPositions GET /goods-handover/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getAllGoodsHandoverTransactions GET /goods-handover/transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverOrder GET /goods-handover/orders/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverOrderPosition GET /goods-handover/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverOrderPositionSerial GET /goods-handover/order-position-serials/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverOrderTransaction GET /goods-handover/order-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverTransaction GET /goods-handover/transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverTransactionPosition GET /goods-handover/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi getSingleGoodsHandoverTransactionPositionSerial GET /goods-handover/transaction-position-serials/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updateGoodsHandoverOrder PUT /goods-handover/orders/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updateGoodsHandoverOrderPosition PUT /goods-handover/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updateGoodsHandoverOrderPositionSerial PUT /goods-handover/order-position-serials/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updatePartialGoodsHandoverOrder POST /goods-handover/orders/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updatePartialGoodsHandoverOrderPosition POST /goods-handover/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.GoodsHandoverApi updatePartialGoodsHandoverOrderPositionSerial POST /goods-handover/order-position-serials/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createApplicationConfigurationForDevice POST /hardware/devices/{id}/configurations/applications Updates, deletes, creates relations between applications and configurations.
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createCashDrawerOpenRequest POST /hardware/cash-drawer-open-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createChangeAmount POST /hardware/change-amounts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createDeviceController POST /hardware/device-controllers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createDeviceControllerSetting POST /hardware/device-controller-settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareDevice POST /hardware/devices insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareDevice2MeansOfPayment POST /hardware/device-means-of-payments insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareDeviceAppConfiguration POST /hardware/deviceAppConfigurations insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareDeviceInitializationRequest POST /hardware/device-initialization-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareSetting POST /hardware/settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareStation POST /hardware/stations insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createHardwareStationLock POST /hardware/hardwareLocks insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createManualPaymentRequestCompletion POST /hardware/manual-payment-request-completions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createPaymentJob POST /hardware/payment-jobs insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createPaymentRequest POST /hardware/payment-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createPaymentRequestCancellation POST /hardware/payment-request-cancellations insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createPrintJob POST /hardware/print-jobs insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi createPrintRequest POST /hardware/print-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteChangeAmount DELETE /hardware/change-amounts/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteDeviceController DELETE /hardware/device-controllers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteDeviceControllerSetting DELETE /hardware/device-controller-settings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteHardwareDevice DELETE /hardware/devices/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteHardwareDevice2MeansOfPayment DELETE /hardware/device-means-of-payments/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteHardwareSetting DELETE /hardware/settings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteHardwareStation DELETE /hardware/stations/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deleteHardwareStationLock DELETE /hardware/hardwareLocks/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deletePaymentJob DELETE /hardware/payment-jobs/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi deletePrintJob DELETE /hardware/print-jobs/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi fullUpdateHardwareDevice PUT /hardware/devices/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi fullUpdateHardwareStation PUT /hardware/stations/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllCashDrawerOpenRequests GET /hardware/cash-drawer-open-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllChangeAmounts GET /hardware/change-amounts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllDeviceControllerSettings GET /hardware/device-controller-settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllDeviceControllers GET /hardware/device-controllers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareDevice2MeansOfPayments GET /hardware/device-means-of-payments get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareDeviceConfigurations GET /hardware/deviceAppConfigurations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareDeviceInitializationRequests GET /hardware/device-initialization-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareDevices GET /hardware/devices get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareSettings GET /hardware/settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareStationLocks GET /hardware/hardwareLocks get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllHardwareStations GET /hardware/stations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllManualPaymentRequestCompletions GET /hardware/manual-payment-request-completions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllPaymentJobs GET /hardware/payment-jobs get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllPaymentRequestCancellations GET /hardware/payment-request-cancellations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllPaymentRequests GET /hardware/payment-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllPrintJobs GET /hardware/print-jobs get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getAllPrintRequests GET /hardware/print-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getApplicationConfigurationForDevice GET /hardware/devices/{id}/configurations/applications Finds application configurations for devices.
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleCashDrawerOpenRequest GET /hardware/cash-drawer-open-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleChangeAmount GET /hardware/change-amounts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleDeviceController GET /hardware/device-controllers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleDeviceControllerSetting GET /hardware/device-controller-settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareDevice GET /hardware/devices/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareDevice2MeansOfPayment GET /hardware/device-means-of-payments/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareDeviceConfigurations GET /hardware/deviceAppConfigurations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareDeviceInitializationRequest GET /hardware/device-initialization-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareSetting GET /hardware/settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareStation GET /hardware/stations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleHardwareStationLock GET /hardware/hardwareLocks/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSingleManualPaymentRequestCompletion GET /hardware/manual-payment-request-completions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSinglePaymentJob GET /hardware/payment-jobs/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSinglePaymentRequest GET /hardware/payment-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSinglePaymentRequestCancellation GET /hardware/payment-request-cancellations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSinglePrintJob GET /hardware/print-jobs/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi getSinglePrintRequest GET /hardware/print-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateChangeAmount PUT /hardware/change-amounts/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateDeviceController PUT /hardware/device-controllers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateDeviceControllerSetting PUT /hardware/device-controller-settings/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateHardwareDevice POST /hardware/devices/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateHardwareDevice2MeansOfPayment PUT /hardware/device-means-of-payments/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updateHardwareSetting PUT /hardware/settings/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialChangeAmount POST /hardware/change-amounts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialDeviceController POST /hardware/device-controllers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialDeviceControllerSetting POST /hardware/device-controller-settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialHardwareDevice2MeansOfPayment POST /hardware/device-means-of-payments/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialHardwareSetting POST /hardware/settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialPaymentJob POST /hardware/payment-jobs/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePartialPrintJob POST /hardware/print-jobs/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePaymentJob PUT /hardware/payment-jobs/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HardwareApi updatePrintJob PUT /hardware/print-jobs/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi createConnection POST /hermes/connections insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi createSubscription POST /hermes/subscriptions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi deleteConnection DELETE /hermes/connections/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi deleteSubscription DELETE /hermes/subscriptions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi getAllConnections GET /hermes/connections get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi getAllSubscriptions GET /hermes/subscriptions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi getSingleConnection GET /hermes/connections/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.HermesApi getSingleSubscription GET /hermes/subscriptions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi createLocation POST /location/locations insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi deleteLocation DELETE /location/locations/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi fullUpdateLocation PUT /location/locations/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getAllCountries GET /location/countries get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getAllLocations GET /location/locations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getChildrenOf GET /location/locations/{id}/sublocations Get sub-locations
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getParent GET /location/locations/{id}/parent Get the parent location of a location
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getRoots GET /location/locations/roots Get root locations
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getSingleCountry GET /location/countries/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi getSingleLocation GET /location/locations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LocationApi updateLocation POST /location/locations/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi createLog POST /logs insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi deleteLog DELETE /logs/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi fullUpdateLog PUT /logs/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi getAllLogs GET /logs get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi getSingleLog GET /logs/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.LoggingApi updateLog POST /logs/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi createDenominationUnit POST /means-of-payment/units insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi createMeansOfPayment POST /means-of-payment/payments insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi deleteDenominationUnit DELETE /means-of-payment/units/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi deleteMeansOfPayment DELETE /means-of-payment/payments/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi getAllDenominationUnits GET /means-of-payment/units get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi getAllMeansOfPayments GET /means-of-payment/payments get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi getSingleDenominationUnit GET /means-of-payment/units/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi getSingleMeansOfPayment GET /means-of-payment/payments/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi updateDenominationUnit PUT /means-of-payment/units/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi updateMeansOfPayment PUT /means-of-payment/payments/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi updatePartialDenominationUnit POST /means-of-payment/units/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.MeansOfPaymentApi updatePartialMeansOfPayment POST /means-of-payment/payments/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi createIssuedTransaction POST /modulemanagement/transactions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi deleteIssuedTransaction DELETE /modulemanagement/transactions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getAllModules GET /modules get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getAllUsages GET /modulemanagement/usages get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getAllowedApplicationIDs GET /modules/rights Get allowed application IDs
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getSingleIssuedTransaction GET /modulemanagement/transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getSinglePostman GET /modulemanagement/postmen/{name} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ModulemanagementApi getSingleUsage GET /modulemanagement/usages/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createAttachment POST /notification/mail/attachments insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createMail POST /notification/mail/mails insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createMail2Attachment POST /notification/mail/mail2attachments insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createSendRequest POST /notification/mail/send-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createSendRequest_0 POST /notification/sms/send-requests insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi createSms POST /notification/sms/smses insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi deleteAttachment DELETE /notification/mail/attachments/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi deleteMail DELETE /notification/mail/mails/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi deleteMail2Attachment DELETE /notification/mail/mail2attachments/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi deleteSms DELETE /notification/sms/smses/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllAttachments GET /notification/mail/attachments get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllMail2Attachments GET /notification/mail/mail2attachments get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllMails GET /notification/mail/mails get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllSendRequests GET /notification/mail/send-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllSendRequests_0 GET /notification/sms/send-requests get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getAllSms GET /notification/sms/smses get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleAttachment GET /notification/mail/attachments/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleMail GET /notification/mail/mails/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleMail2Attachment GET /notification/mail/mail2attachments/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleSendRequest GET /notification/mail/send-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleSendRequest_0 GET /notification/sms/send-requests/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi getSingleSms GET /notification/sms/smses/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updateAttachment PUT /notification/mail/attachments/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updateMail PUT /notification/mail/mails/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updateMail2Attachment PUT /notification/mail/mail2attachments/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updatePartialAttachment POST /notification/mail/attachments/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updatePartialMail POST /notification/mail/mails/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updatePartialMail2Attachment POST /notification/mail/mail2attachments/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updatePartialSms POST /notification/sms/smses/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.NotificationApi updateSms PUT /notification/sms/smses/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi createCartExport POST /port/cart-exports insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi createResourceMapping POST /port/resource-mappings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi deleteResourceMapping DELETE /port/resource-mappings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi getAllCartExports GET /port/cart-exports get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi getAllResourceMappings GET /port/resource-mappings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi getSingleCartExport GET /port/cart-exports/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi getSingleResourceMapping GET /port/resource-mappings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.PortApi updateResourceMapping POST /port/resource-mappings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi addCategoryToProduct POST /product/products/{id}/categories add category to product
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createBundle POST /product/bundles insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createBundleOffer POST /product/bundleoffer insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createBundlePart POST /product/bundleparts insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createBundlePart2Product POST /product/bundlepart2product insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createMediaItem POST /product/mediaitems insert a media item asset
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProduct POST /product/products insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductCategory POST /product/categories insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductCharacteristic POST /product/characteristics create a new characteristic
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductCode POST /product/codes insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductCodeType POST /product/code-types insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductMedia POST /product/media insert a product media asset
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductOffer POST /product/productoffer insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi createProductRecommendation POST /product/recommendations createProductRecommendation
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteBundle DELETE /product/bundles/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteBundleOffer DELETE /product/bundleoffer/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteBundlePart DELETE /product/bundleparts/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteBundlePart2Product DELETE /product/bundlepart2product/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteCategoryFromProduct DELETE /product/products/{id}/categories/{categoryId} remove category from product
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteMediaItem DELETE /product/mediaitems/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProduct DELETE /product/products/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductCategory DELETE /product/categories/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductCharacteristic DELETE /product/characteristics/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductCode DELETE /product/codes/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductCodeType DELETE /product/code-types/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductMedia DELETE /product/media/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductOffer DELETE /product/productoffer/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi deleteProductRecommendation DELETE /product/recommendations/{id} deleteProductRecommendation
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi fullUpdateBundleOffer PUT /product/bundleoffer/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi fullUpdateProductCategory PUT /product/categories/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi fullUpdateProductOffer PUT /product/productoffer/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllBrands GET /product/brands get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllBundleOffers GET /product/bundleoffer get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllBundlePart2Products GET /product/bundlepart2product get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllBundleParts GET /product/bundleparts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllBundles GET /product/bundles get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllMediaItems GET /product/mediaitems get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductCategories GET /product/categories get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductCharacteristics GET /product/characteristics get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductCodeTypes GET /product/code-types get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductCodes GET /product/codes get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductExtensions GET /product/extensions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductMedia GET /product/media get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductOffer GET /product/productoffer get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProductOfferMetadata GET /product/productoffermetadata get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getAllProducts GET /product/products get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getCharacteristics GET /product/products/{id}/characteristics get characteristics of product
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getDirectSubcategories1 GET /product/categories/{id}/subcategories get direct subcategories
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getProductCategories GET /product/products/{id}/categories get product categories
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getProductMedia GET /product/products/{id}/media get product media
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getProductPrimeMedia GET /product/products/{id}/media/prime get prime media
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getProductRecommendations GET /product/recommendations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getProductsOfCategory GET /product/categories/{id}/products get products for category
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleBundle GET /product/bundles/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleBundleOffer GET /product/bundleoffer/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleBundlePart GET /product/bundleparts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleBundlePart2Product GET /product/bundlepart2product/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleMediaItem GET /product/mediaitems/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProduct GET /product/products/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductCategory GET /product/categories/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductCharacteristic GET /product/characteristics/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductCode GET /product/codes/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductCodeType GET /product/code-types/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductMedia GET /product/media/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductOffer GET /product/productoffer/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi getSingleProductRecommendation GET /product/recommendations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi searchBundleAssignments GET /product/bundleassignments gets a list of bundles matching the given criteria
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi searchProducts GET /product/search get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateBundle POST /product/bundles/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateBundleOffer POST /product/bundleoffer/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateBundlePart POST /product/bundleparts/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateBundlePart2Product POST /product/bundlepart2product/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateMediaItem POST /product/mediaitems/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updatePartialProductCode POST /product/codes/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updatePartialProductCodeType POST /product/code-types/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProduct POST /product/products/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductCategory POST /product/categories/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductCharacteristic POST /product/characteristics/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductCode PUT /product/codes/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductCodeType PUT /product/code-types/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductMedia POST /product/media/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductOffer POST /product/productoffer/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ProductApi updateProductRecommendation POST /product/recommendations/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi createAppointment POST /queue/appointments insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi createQueue POST /queue/queues insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi createQueueTopic POST /queue/queue-topics insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi createQueueWorker POST /queue/queue-workers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi createVisit POST /queue/visits insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi deleteAppointment DELETE /queue/appointments/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi deleteQueue DELETE /queue/queues/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi deleteQueueTopic DELETE /queue/queue-topics/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi deleteQueueWorker DELETE /queue/queue-workers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi deleteVisit DELETE /queue/visits/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getAllAppointments GET /queue/appointments get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getAllQueueTopics GET /queue/queue-topics get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getAllQueueWorkers GET /queue/queue-workers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getAllQueues GET /queue/queues get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getAllVisits GET /queue/visits get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getQueueEstimation GET /queue/queue-estimations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getSingleAppointment GET /queue/appointments/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getSingleQueue GET /queue/queues/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getSingleQueueTopic GET /queue/queue-topics/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getSingleQueueWorker GET /queue/queue-workers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getSingleVisit GET /queue/visits/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getVisitEstimation GET /queue/visit-estimations/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi getVisitEstimations GET /queue/visit-estimations get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updateAppointment PUT /queue/appointments/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updatePartialAppointment POST /queue/appointments/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updatePartialQueueTopic POST /queue/queue-topics/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updatePartialQueueWorker POST /queue/queue-workers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updatePartialVisit POST /queue/visits/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updateQueue PUT /queue/queues/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updateQueueTopic PUT /queue/queue-topics/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.QueueApi updateQueueWorker PUT /queue/queue-workers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createOrder POST /retail/orders insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createOrderCustomerData POST /retail/order-customer-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createOrderPosition POST /retail/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createOrderTaxData POST /retail/order-tax-data insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createOrderTransaction POST /retail/order-transactions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi createTransactionPrintJob POST /retail/transaction-print-jobs insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi deleteOrder DELETE /retail/orders/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi deleteOrderCustomerData DELETE /retail/order-customer-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi deleteOrderPosition DELETE /retail/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi deleteOrderTaxData DELETE /retail/order-tax-data/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi fullUpdateOrder PUT /retail/orders/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi fullUpdateOrderCustomerData PUT /retail/order-customer-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi fullUpdateOrderPosition PUT /retail/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi fullUpdateOrderTaxData PUT /retail/order-tax-data/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllOrderCustomerData GET /retail/order-customer-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllOrderPositions GET /retail/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllOrderTaxData GET /retail/order-tax-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllOrderTransactions GET /retail/order-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllOrders GET /retail/orders get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactionCustomerData GET /retail/transaction-customer-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactionPositions GET /retail/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactionPrintJobParts GET /retail/transaction-print-job-parts get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactionPrintJobs GET /retail/transaction-print-jobs get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactionTaxData GET /retail/transaction-tax-data get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getAllTransactions GET /retail/transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleOrder GET /retail/orders/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleOrderCustomerData GET /retail/order-customer-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleOrderPosition GET /retail/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleOrderTaxData GET /retail/order-tax-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleOrderTransaction GET /retail/order-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransaction GET /retail/transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransactionCustomerData GET /retail/transaction-customer-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransactionPosition GET /retail/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransactionPrintJob GET /retail/transaction-print-jobs/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransactionPrintJobPart GET /retail/transaction-print-job-parts/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi getSingleTransactionTaxData GET /retail/transaction-tax-data/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi updateOrder POST /retail/orders/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi updateOrderCustomerData POST /retail/order-customer-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi updateOrderPosition POST /retail/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.RetailApi updateOrderTaxData POST /retail/order-tax-data/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi createReturnCartPosition POST /return/cart-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi createReturnReason POST /return/reasons insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi deleteReturnCartPosition DELETE /return/cart-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi deleteReturnReason DELETE /return/reasons/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getAllReturnCartPositions GET /return/cart-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getAllReturnReasons GET /return/reasons get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getAllReturnTransactionPositions GET /return/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getReturnCartPosition GET /return/cart-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getSingleReturnReason GET /return/reasons/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi getSingleReturnTransactionPosition GET /return/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi updatePartialReturnCartPosition POST /return/cart-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi updatePartialReturnReason POST /return/reasons/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi updateReturnCartPosition PUT /return/cart-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.ReturnApi updateReturnReason PUT /return/reasons/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi createPermission POST /security/permissions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi createRole POST /security/roles insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi createRole2Permission POST /security/role-permissions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi createShortToken POST /security/short-tokens insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi deletePermission DELETE /security/permissions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi deleteRole DELETE /security/roles/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi deleteRole2Permission DELETE /security/role-permissions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi fullUpdatePermission PUT /security/permissions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi fullUpdateRole PUT /security/roles/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi fullUpdateRole2Permission PUT /security/role-permissions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getAllPermissions GET /security/permissions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getAllRole2Permissions GET /security/role-permissions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getAllRoles GET /security/roles get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getSinglePermission GET /security/permissions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getSingleRole GET /security/roles/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getSingleRole2Permission GET /security/role-permissions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getSingleShortToken GET /security/short-tokens/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi getSingleUser GET /security/users/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi updatePermission POST /security/permissions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi updateRole POST /security/roles/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SecurityApi updateRole2Permission POST /security/role-permissions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberApi getAllSerialNumbers GET /serial-number/serial-numbers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.SerialNumberApi getSingleSerialNumber GET /serial-number/serial-numbers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi createStock POST /stock/stocks insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi createStockMovementOrder POST /stock/movement-orders insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi createStockMovementOrderPosition POST /stock/movement-order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi createStockMovementOrderPositionSerial POST /stock/movement-order-position-serials insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi createStockMovementOrderTransaction POST /stock/movement-order-transactions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi deleteStock DELETE /stock/stocks/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi deleteStockMovementOrder DELETE /stock/movement-orders/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi deleteStockMovementOrderPosition DELETE /stock/movement-order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi deleteStockMovementOrderPositionSerial DELETE /stock/movement-order-position-serials/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockLevels GET /stock/levels get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementOrderPositionSerials GET /stock/movement-order-position-serials get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementOrderPositions GET /stock/movement-order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementOrderTransactions GET /stock/movement-order-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementOrders GET /stock/movement-orders get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementTransactionPositionSerials GET /stock/movement-transaction-position-serials get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementTransactionPositions GET /stock/movement-transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStockMovementTransactions GET /stock/movement-transactions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getAllStocks GET /stock/stocks get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStock GET /stock/stocks/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementOrder GET /stock/movement-orders/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementOrderPosition GET /stock/movement-order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementOrderPositionSerial GET /stock/movement-order-position-serials/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementOrderTransaction GET /stock/movement-order-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementTransaction GET /stock/movement-transactions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementTransactionPosition GET /stock/movement-transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi getSingleStockMovementTransactionPositionSerial GET /stock/movement-transaction-position-serials/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updatePartialStock POST /stock/stocks/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updatePartialStockMovementOrder POST /stock/movement-orders/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updatePartialStockMovementOrderPosition POST /stock/movement-order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updatePartialStockMovementOrderPositionSerial POST /stock/movement-order-position-serials/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updateStock PUT /stock/stocks/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updateStockMovementOrder PUT /stock/movement-orders/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updateStockMovementOrderPosition PUT /stock/movement-order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockApi updateStockMovementOrderPositionSerial PUT /stock/movement-order-position-serials/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi createStockGoodsHandoverOrderPosition POST /stock-goods-handover/order-positions insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi deleteStockGoodsHandoverOrderPosition DELETE /stock-goods-handover/order-positions/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi getAllStockGoodsHandoverOrderPositions GET /stock-goods-handover/order-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi getAllStockGoodsHandoverTransactionPositions GET /stock-goods-handover/transaction-positions get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi getSingleStockGoodsHandoverOrderPosition GET /stock-goods-handover/order-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi getSingleStockGoodsHandoverTransactionPosition GET /stock-goods-handover/transaction-positions/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi updatePartialStockGoodsHandoverOrderPosition POST /stock-goods-handover/order-positions/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.StockGoodsHandoverApi updateStockGoodsHandoverOrderPosition PUT /stock-goods-handover/order-positions/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTax POST /tax/taxes insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTaxClass POST /tax/tax-classes insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTaxClass2Product POST /tax/tax-class-products insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTaxRule POST /tax/tax-rules insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTaxSet POST /tax/tax-sets insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi createTaxSet2Tax POST /tax/tax-set-taxes insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTax DELETE /tax/taxes/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTaxClass DELETE /tax/tax-classes/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTaxClass2Product DELETE /tax/tax-class-products/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTaxRule DELETE /tax/tax-rules/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTaxSet DELETE /tax/tax-sets/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi deleteTaxSet2Tax DELETE /tax/tax-set-taxes/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxClass2Products GET /tax/tax-class-products get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxClasses GET /tax/tax-classes get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxRules GET /tax/tax-rules get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxSet2Taxes GET /tax/tax-set-taxes get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxSets GET /tax/tax-sets get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getAllTaxes GET /tax/taxes get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTax GET /tax/taxes/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTaxClass GET /tax/tax-classes/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTaxClass2Product GET /tax/tax-class-products/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTaxRule GET /tax/tax-rules/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTaxSet GET /tax/tax-sets/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi getSingleTaxSet2Tax GET /tax/tax-set-taxes/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTax POST /tax/taxes/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTaxClass POST /tax/tax-classes/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTaxClass2Product POST /tax/tax-class-products/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTaxRule POST /tax/tax-rules/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTaxSet POST /tax/tax-sets/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updatePartialTaxSet2Tax POST /tax/tax-set-taxes/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTax PUT /tax/taxes/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTaxClass PUT /tax/tax-classes/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTaxClass2Product PUT /tax/tax-class-products/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTaxRule PUT /tax/tax-rules/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTaxSet PUT /tax/tax-sets/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TaxApi updateTaxSet2Tax PUT /tax/tax-set-taxes/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TraceApi getSingleStackTrace GET /trace/stack-traces/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi deleteTranslationContent DELETE /translator/contents/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi exportTranslationsAsXml GET /translator/contents Exports to XML
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi exportTranslationsToFile GET /translator/contents/export Exports to XML
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi fullUpdateTranslationContent PUT /translator/contents/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi getAllTranslations GET /translator/translations Get information about a scope
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi getLanguages GET /translator/languages get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi getSingleTranslationContent GET /translator/contents/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi importCsv POST /translator/contents Imports CSV
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.TranslatorApi updateTranslationContent POST /translator/contents/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi createVisitor POST /visitor/visitors insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi createVisitorMedia POST /visitor/media insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi deleteVisitor DELETE /visitor/visitors/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi deleteVisitorMedia DELETE /visitor/media/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getAllVisitorMedia GET /visitor/media get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getAllVisitorMediaPreviews GET /visitor/media-previews get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getAllVisitors GET /visitor/visitors get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getSingleVisitor GET /visitor/visitors/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getSingleVisitorMedia GET /visitor/media/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi getSingleVisitorMediaPreview GET /visitor/media-previews/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi updatePartialVisitor POST /visitor/visitors/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi updateVisitor PUT /visitor/visitors/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VisitorApi updateVisitorMedia PUT /visitor/media/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi createVoucherNotificationSetting POST /voucher/notification-settings insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi deleteVoucher DELETE /voucher/vouchers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi deleteVoucherNotificationSetting DELETE /voucher/notification-settings/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi getAllVoucherNotificationSettings GET /voucher/notification-settings get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi getAllVouchers GET /voucher/vouchers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi getSingleVoucher GET /voucher/vouchers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi getSingleVoucherNotificationSetting GET /voucher/notification-settings/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi importVouchersFromMofFile POST /voucher/vouchers Import MOF file
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi updatePartialVoucher POST /voucher/vouchers/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi updatePartialVoucherNotificationSetting POST /voucher/notification-settings/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi updateVoucher PUT /voucher/vouchers/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherApi updateVoucherNotificationSetting PUT /voucher/notification-settings/{id} update resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi createVoucherHandover POST /voucher-usage/handovers insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi deleteVoucherHandover DELETE /voucher-usage/handovers/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi getAllVoucherHandovers GET /voucher-usage/handovers get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.VoucherHandoverApi getSingleVoucherHandover GET /voucher-usage/handovers/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi createWorkflowStep POST /workflow/workflow-steps insert resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi deleteWorkflowStep DELETE /workflow/workflow-steps/{id} delete resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi getAllWorkflowSteps GET /workflow/workflow-steps get list of resources
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi getSingleWorkflowStep GET /workflow/workflow-steps/{id} get resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi updatePartialWorkflowStep POST /workflow/workflow-steps/{id} perform a partial update of the resource
ThisIsTheDocumentationOfTheRestInterfacesProvidedByNtsRetail.WorkflowApi updateWorkflowStep PUT /workflow/workflow-steps/{id} update resource

Documentation for Models

Documentation for Authorization

gemini_auth

  • Type: OAuth
  • Flow: implicit
  • Authorization URL: ../login/openid
  • Scopes:
    • gemini_scope: The global authorization scope for Gemini.

Readme

Keywords

none

Package Sidebar

Install

npm i nts-gemini-javascript-client

Weekly Downloads

19

Version

0.1.0

License

Unlicense

Unpacked Size

24.6 MB

Total Files

1555

Last publish

Collaborators

  • plo_nts