npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nts-gemini-javascript-client

v0.1.0

Published

This is the javascript frontend client for NTS Retail Gemini Backend Version 12.3.0 (generated through Swagger Codegen) incl. RnI welcoming package

Downloads

186

Readme

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 | [**deleteCha