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 🙏

© 2025 – Pkg Stats / Ryan Hefner

darwin-infoplus

v1.0.0

Published

Infoplus API.

Downloads

19

Readme

infoplus-javascript-client

infoplus - JavaScript client for infoplus-javascript-client Infoplus API. This SDK is automatically generated by the Swagger Codegen project:

  • API version: beta
  • Package version: beta
  • Build package: io.swagger.codegen.languages.JavascriptClientCodegen For more information, please visit http://www.infopluscommerce.com

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 infoplus-javascript-client --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 infoplus-javascript-client from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('infoplus-javascript-client') 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 infoplus = require('infoplus-javascript-client');

var defaultClient = infoplus.ApiClient.instance;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.apiKeyPrefix['API-Key'] = "Token"

var api = new infoplus.AisleApi()

var body = new infoplus.Aisle(); // {Aisle} Aisle to be inserted.


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.addAisle(body, callback);

Documentation for API Endpoints

All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- infoplus.AisleApi | addAisle | POST /beta/aisle | Create an aisle infoplus.AisleApi | addAisleAudit | PUT /beta/aisle/{aisleId}/audit/{aisleAudit} | Add new audit for an aisle infoplus.AisleApi | addAisleTag | PUT /beta/aisle/{aisleId}/tag/{aisleTag} | Add new tags for an aisle. infoplus.AisleApi | deleteAisle | DELETE /beta/aisle/{aisleId} | Delete an aisle infoplus.AisleApi | deleteAisleTag | DELETE /beta/aisle/{aisleId}/tag/{aisleTag} | Delete a tag for an aisle. infoplus.AisleApi | getAisleByFilter | GET /beta/aisle/search | Search aisles by filter infoplus.AisleApi | getAisleById | GET /beta/aisle/{aisleId} | Get an aisle by id infoplus.AisleApi | getAisleTags | GET /beta/aisle/{aisleId}/tag | Get the tags for an aisle. infoplus.AisleApi | getDuplicateAisleById | GET /beta/aisle/duplicate/{aisleId} | Get a duplicated an aisle by id infoplus.AisleApi | updateAisle | PUT /beta/aisle | Update an aisle infoplus.AisleApi | updateAisleCustomFields | PUT /beta/aisle/customFields | Update an aisle custom fields infoplus.AlertApi | addAlertAudit | PUT /beta/alert/{alertId}/audit/{alertAudit} | Add new audit for an alert infoplus.AlertApi | addAlertTag | PUT /beta/alert/{alertId}/tag/{alertTag} | Add new tags for an alert. infoplus.AlertApi | deleteAlertTag | DELETE /beta/alert/{alertId}/tag/{alertTag} | Delete a tag for an alert. infoplus.AlertApi | getAlertByFilter | GET /beta/alert/search | Search alerts by filter infoplus.AlertApi | getAlertById | GET /beta/alert/{alertId} | Get an alert by id infoplus.AlertApi | getAlertTags | GET /beta/alert/{alertId}/tag | Get the tags for an alert. infoplus.AlertApi | getDuplicateAlertById | GET /beta/alert/duplicate/{alertId} | Get a duplicated an alert by id infoplus.AlertApi | updateAlertCustomFields | PUT /beta/alert/customFields | Update an alert custom fields infoplus.AsnApi | addAsn | POST /beta/asn | Create an asn infoplus.AsnApi | addAsnAudit | PUT /beta/asn/{asnId}/audit/{asnAudit} | Add new audit for an asn infoplus.AsnApi | addAsnTag | PUT /beta/asn/{asnId}/tag/{asnTag} | Add new tags for an asn. infoplus.AsnApi | deleteAsn | DELETE /beta/asn/{asnId} | Delete an asn infoplus.AsnApi | deleteAsnTag | DELETE /beta/asn/{asnId}/tag/{asnTag} | Delete a tag for an asn. infoplus.AsnApi | getAsnByFilter | GET /beta/asn/search | Search asns by filter infoplus.AsnApi | getAsnById | GET /beta/asn/{asnId} | Get an asn by id infoplus.AsnApi | getAsnTags | GET /beta/asn/{asnId}/tag | Get the tags for an asn. infoplus.AsnApi | getDuplicateAsnById | GET /beta/asn/duplicate/{asnId} | Get a duplicated an asn by id infoplus.AsnApi | updateAsn | PUT /beta/asn | Update an asn infoplus.AsnApi | updateAsnCustomFields | PUT /beta/asn/customFields | Update an asn custom fields infoplus.BillOfLadingApi | addBillOfLading | POST /beta/billOfLading | Create a billOfLading infoplus.BillOfLadingApi | addBillOfLadingAudit | PUT /beta/billOfLading/{billOfLadingId}/audit/{billOfLadingAudit} | Add new audit for a billOfLading infoplus.BillOfLadingApi | addBillOfLadingTag | PUT /beta/billOfLading/{billOfLadingId}/tag/{billOfLadingTag} | Add new tags for a billOfLading. infoplus.BillOfLadingApi | deleteBillOfLading | DELETE /beta/billOfLading/{billOfLadingId} | Delete a billOfLading infoplus.BillOfLadingApi | deleteBillOfLadingTag | DELETE /beta/billOfLading/{billOfLadingId}/tag/{billOfLadingTag} | Delete a tag for a billOfLading. infoplus.BillOfLadingApi | getBillOfLadingByFilter | GET /beta/billOfLading/search | Search billOfLadings by filter infoplus.BillOfLadingApi | getBillOfLadingById | GET /beta/billOfLading/{billOfLadingId} | Get a billOfLading by id infoplus.BillOfLadingApi | getBillOfLadingTags | GET /beta/billOfLading/{billOfLadingId}/tag | Get the tags for a billOfLading. infoplus.BillOfLadingApi | getDuplicateBillOfLadingById | GET /beta/billOfLading/duplicate/{billOfLadingId} | Get a duplicated a billOfLading by id infoplus.BillOfLadingApi | updateBillOfLading | PUT /beta/billOfLading | Update a billOfLading infoplus.BillOfLadingApi | updateBillOfLadingCustomFields | PUT /beta/billOfLading/customFields | Update a billOfLading custom fields infoplus.BillingCodeApi | addBillingCode | POST /beta/billingCode | Create a billingCode infoplus.BillingCodeApi | addBillingCodeAudit | PUT /beta/billingCode/{billingCodeId}/audit/{billingCodeAudit} | Add new audit for a billingCode infoplus.BillingCodeApi | addBillingCodeTag | PUT /beta/billingCode/{billingCodeId}/tag/{billingCodeTag} | Add new tags for a billingCode. infoplus.BillingCodeApi | deleteBillingCode | DELETE /beta/billingCode/{billingCodeId} | Delete a billingCode infoplus.BillingCodeApi | deleteBillingCodeTag | DELETE /beta/billingCode/{billingCodeId}/tag/{billingCodeTag} | Delete a tag for a billingCode. infoplus.BillingCodeApi | getBillingCodeByFilter | GET /beta/billingCode/search | Search billingCodes by filter infoplus.BillingCodeApi | getBillingCodeById | GET /beta/billingCode/{billingCodeId} | Get a billingCode by id infoplus.BillingCodeApi | getBillingCodeTags | GET /beta/billingCode/{billingCodeId}/tag | Get the tags for a billingCode. infoplus.BillingCodeApi | getDuplicateBillingCodeById | GET /beta/billingCode/duplicate/{billingCodeId} | Get a duplicated a billingCode by id infoplus.BillingCodeApi | updateBillingCode | PUT /beta/billingCode | Update a billingCode infoplus.BillingCodeApi | updateBillingCodeCustomFields | PUT /beta/billingCode/customFields | Update a billingCode custom fields infoplus.BillingCodeActivityApi | addBillingCodeActivity | POST /beta/billingCodeActivity | Create a billingCodeActivity infoplus.BillingCodeActivityApi | addBillingCodeActivityAudit | PUT /beta/billingCodeActivity/{billingCodeActivityId}/audit/{billingCodeActivityAudit} | Add new audit for a billingCodeActivity infoplus.BillingCodeActivityApi | addBillingCodeActivityTag | PUT /beta/billingCodeActivity/{billingCodeActivityId}/tag/{billingCodeActivityTag} | Add new tags for a billingCodeActivity. infoplus.BillingCodeActivityApi | deleteBillingCodeActivity | DELETE /beta/billingCodeActivity/{billingCodeActivityId} | Delete a billingCodeActivity infoplus.BillingCodeActivityApi | deleteBillingCodeActivityTag | DELETE /beta/billingCodeActivity/{billingCodeActivityId}/tag/{billingCodeActivityTag} | Delete a tag for a billingCodeActivity. infoplus.BillingCodeActivityApi | getBillingCodeActivityByFilter | GET /beta/billingCodeActivity/search | Search billingCodeActivitys by filter infoplus.BillingCodeActivityApi | getBillingCodeActivityById | GET /beta/billingCodeActivity/{billingCodeActivityId} | Get a billingCodeActivity by id infoplus.BillingCodeActivityApi | getBillingCodeActivityTags | GET /beta/billingCodeActivity/{billingCodeActivityId}/tag | Get the tags for a billingCodeActivity. infoplus.BillingCodeActivityApi | getDuplicateBillingCodeActivityById | GET /beta/billingCodeActivity/duplicate/{billingCodeActivityId} | Get a duplicated a billingCodeActivity by id infoplus.BillingCodeActivityApi | updateBillingCodeActivity | PUT /beta/billingCodeActivity | Update a billingCodeActivity infoplus.BillingCodeTypeApi | addBillingCodeType | POST /beta/billingCodeType | Create a billingCodeType infoplus.BillingCodeTypeApi | addBillingCodeTypeAudit | PUT /beta/billingCodeType/{billingCodeTypeId}/audit/{billingCodeTypeAudit} | Add new audit for a billingCodeType infoplus.BillingCodeTypeApi | addBillingCodeTypeTag | PUT /beta/billingCodeType/{billingCodeTypeId}/tag/{billingCodeTypeTag} | Add new tags for a billingCodeType. infoplus.BillingCodeTypeApi | deleteBillingCodeType | DELETE /beta/billingCodeType/{billingCodeTypeId} | Delete a billingCodeType infoplus.BillingCodeTypeApi | deleteBillingCodeTypeTag | DELETE /beta/billingCodeType/{billingCodeTypeId}/tag/{billingCodeTypeTag} | Delete a tag for a billingCodeType. infoplus.BillingCodeTypeApi | getBillingCodeTypeByFilter | GET /beta/billingCodeType/search | Search billingCodeTypes by filter infoplus.BillingCodeTypeApi | getBillingCodeTypeById | GET /beta/billingCodeType/{billingCodeTypeId} | Get a billingCodeType by id infoplus.BillingCodeTypeApi | getBillingCodeTypeTags | GET /beta/billingCodeType/{billingCodeTypeId}/tag | Get the tags for a billingCodeType. infoplus.BillingCodeTypeApi | getDuplicateBillingCodeTypeById | GET /beta/billingCodeType/duplicate/{billingCodeTypeId} | Get a duplicated a billingCodeType by id infoplus.BillingCodeTypeApi | updateBillingCodeType | PUT /beta/billingCodeType | Update a billingCodeType infoplus.BillingCodeTypeApi | updateBillingCodeTypeCustomFields | PUT /beta/billingCodeType/customFields | Update a billingCodeType custom fields infoplus.BuildingApi | addBuilding | POST /beta/building | Create a building infoplus.BuildingApi | addBuildingAudit | PUT /beta/building/{buildingId}/audit/{buildingAudit} | Add new audit for a building infoplus.BuildingApi | addBuildingTag | PUT /beta/building/{buildingId}/tag/{buildingTag} | Add new tags for a building. infoplus.BuildingApi | deleteBuilding | DELETE /beta/building/{buildingId} | Delete a building infoplus.BuildingApi | deleteBuildingTag | DELETE /beta/building/{buildingId}/tag/{buildingTag} | Delete a tag for a building. infoplus.BuildingApi | getBuildingByFilter | GET /beta/building/search | Search buildings by filter infoplus.BuildingApi | getBuildingById | GET /beta/building/{buildingId} | Get a building by id infoplus.BuildingApi | getBuildingTags | GET /beta/building/{buildingId}/tag | Get the tags for a building. infoplus.BuildingApi | getDuplicateBuildingById | GET /beta/building/duplicate/{buildingId} | Get a duplicated a building by id infoplus.BuildingApi | updateBuilding | PUT /beta/building | Update a building infoplus.BuildingApi | updateBuildingCustomFields | PUT /beta/building/customFields | Update a building custom fields infoplus.BusinessTransactionApi | addBusinessTransactionAudit | PUT /beta/businessTransaction/{businessTransactionId}/audit/{businessTransactionAudit} | Add new audit for a businessTransaction infoplus.BusinessTransactionApi | addBusinessTransactionTag | PUT /beta/businessTransaction/{businessTransactionId}/tag/{businessTransactionTag} | Add new tags for a businessTransaction. infoplus.BusinessTransactionApi | deleteBusinessTransactionTag | DELETE /beta/businessTransaction/{businessTransactionId}/tag/{businessTransactionTag} | Delete a tag for a businessTransaction. infoplus.BusinessTransactionApi | getBusinessTransactionByFilter | GET /beta/businessTransaction/search | Search businessTransactions by filter infoplus.BusinessTransactionApi | getBusinessTransactionById | GET /beta/businessTransaction/{businessTransactionId} | Get a businessTransaction by id infoplus.BusinessTransactionApi | getBusinessTransactionTags | GET /beta/businessTransaction/{businessTransactionId}/tag | Get the tags for a businessTransaction. infoplus.BusinessTransactionApi | getDuplicateBusinessTransactionById | GET /beta/businessTransaction/duplicate/{businessTransactionId} | Get a duplicated a businessTransaction by id infoplus.BusinessTransactionApi | updateBusinessTransactionCustomFields | PUT /beta/businessTransaction/customFields | Update a businessTransaction custom fields infoplus.CarrierApi | getCarrierById | GET /beta/carrier/{carrierId} | Get a carrier by id infoplus.CarrierApi | getCarrierBySearchText | GET /beta/carrier/search | Search carriers infoplus.CarrierServiceApi | getCarrierServiceById | GET /beta/carrierService/{carrierServiceId} | Get a carrierService by id infoplus.CarrierServiceApi | getCarrierServiceBySearchText | GET /beta/carrierService/search | Search carrierServices infoplus.CartApi | addCart | POST /beta/cart | Create a cart infoplus.CartApi | addCartAudit | PUT /beta/cart/{cartId}/audit/{cartAudit} | Add new audit for a cart infoplus.CartApi | addCartTag | PUT /beta/cart/{cartId}/tag/{cartTag} | Add new tags for a cart. infoplus.CartApi | deleteCart | DELETE /beta/cart/{cartId} | Delete a cart infoplus.CartApi | deleteCartTag | DELETE /beta/cart/{cartId}/tag/{cartTag} | Delete a tag for a cart. infoplus.CartApi | getCartByFilter | GET /beta/cart/search | Search carts by filter infoplus.CartApi | getCartById | GET /beta/cart/{cartId} | Get a cart by id infoplus.CartApi | getCartTags | GET /beta/cart/{cartId}/tag | Get the tags for a cart. infoplus.CartApi | getDuplicateCartById | GET /beta/cart/duplicate/{cartId} | Get a duplicated a cart by id infoplus.CartApi | updateCart | PUT /beta/cart | Update a cart infoplus.CartLocationApi | addCartLocationAudit | PUT /beta/cartLocation/{cartLocationId}/audit/{cartLocationAudit} | Add new audit for a cartLocation infoplus.CartLocationApi | addCartLocationTag | PUT /beta/cartLocation/{cartLocationId}/tag/{cartLocationTag} | Add new tags for a cartLocation. infoplus.CartLocationApi | deleteCartLocationTag | DELETE /beta/cartLocation/{cartLocationId}/tag/{cartLocationTag} | Delete a tag for a cartLocation. infoplus.CartLocationApi | getCartLocationByFilter | GET /beta/cartLocation/search | Search cartLocations by filter infoplus.CartLocationApi | getCartLocationById | GET /beta/cartLocation/{cartLocationId} | Get a cartLocation by id infoplus.CartLocationApi | getCartLocationTags | GET /beta/cartLocation/{cartLocationId}/tag | Get the tags for a cartLocation. infoplus.CartLocationApi | getDuplicateCartLocationById | GET /beta/cartLocation/duplicate/{cartLocationId} | Get a duplicated a cartLocation by id infoplus.CartonApi | addCarton | POST /beta/carton | Create a carton infoplus.CartonApi | addCartonAudit | PUT /beta/carton/{cartonId}/audit/{cartonAudit} | Add new audit for a carton infoplus.CartonApi | addCartonTag | PUT /beta/carton/{cartonId}/tag/{cartonTag} | Add new tags for a carton. infoplus.CartonApi | deleteCarton | DELETE /beta/carton/{cartonId} | Delete a carton infoplus.CartonApi | deleteCartonTag | DELETE /beta/carton/{cartonId}/tag/{cartonTag} | Delete a tag for a carton. infoplus.CartonApi | getCartonByFilter | GET /beta/carton/search | Search cartons by filter infoplus.CartonApi | getCartonById | GET /beta/carton/{cartonId} | Get a carton by id infoplus.CartonApi | getCartonTags | GET /beta/carton/{cartonId}/tag | Get the tags for a carton. infoplus.CartonApi | getDuplicateCartonById | GET /beta/carton/duplicate/{cartonId} | Get a duplicated a carton by id infoplus.CartonApi | updateCarton | PUT /beta/carton | Update a carton infoplus.CartonApi | updateCartonCustomFields | PUT /beta/carton/customFields | Update a carton custom fields infoplus.CartonActivityApi | addCartonActivity | POST /beta/cartonActivity | Create a cartonActivity infoplus.CartonActivityApi | addCartonActivityAudit | PUT /beta/cartonActivity/{cartonActivityId}/audit/{cartonActivityAudit} | Add new audit for a cartonActivity infoplus.CartonActivityApi | addCartonActivityTag | PUT /beta/cartonActivity/{cartonActivityId}/tag/{cartonActivityTag} | Add new tags for a cartonActivity. infoplus.CartonActivityApi | deleteCartonActivity | DELETE /beta/cartonActivity/{cartonActivityId} | Delete a cartonActivity infoplus.CartonActivityApi | deleteCartonActivityTag | DELETE /beta/cartonActivity/{cartonActivityId}/tag/{cartonActivityTag} | Delete a tag for a cartonActivity. infoplus.CartonActivityApi | getCartonActivityByFilter | GET /beta/cartonActivity/search | Search cartonActivitys by filter infoplus.CartonActivityApi | getCartonActivityById | GET /beta/cartonActivity/{cartonActivityId} | Get a cartonActivity by id infoplus.CartonActivityApi | getCartonActivityTags | GET /beta/cartonActivity/{cartonActivityId}/tag | Get the tags for a cartonActivity. infoplus.CartonActivityApi | getDuplicateCartonActivityById | GET /beta/cartonActivity/duplicate/{cartonActivityId} | Get a duplicated a cartonActivity by id infoplus.CartonActivityApi | updateCartonActivity | PUT /beta/cartonActivity | Update a cartonActivity infoplus.CartonContentApi | addCartonContent | POST /beta/cartonContent | Create a cartonContent infoplus.CartonContentApi | addCartonContentAudit | PUT /beta/cartonContent/{cartonContentId}/audit/{cartonContentAudit} | Add new audit for a cartonContent infoplus.CartonContentApi | addCartonContentTag | PUT /beta/cartonContent/{cartonContentId}/tag/{cartonContentTag} | Add new tags for a cartonContent. infoplus.CartonContentApi | deleteCartonContent | DELETE /beta/cartonContent/{cartonContentId} | Delete a cartonContent infoplus.CartonContentApi | deleteCartonContentTag | DELETE /beta/cartonContent/{cartonContentId}/tag/{cartonContentTag} | Delete a tag for a cartonContent. infoplus.CartonContentApi | getCartonContentByFilter | GET /beta/cartonContent/search | Search cartonContents by filter infoplus.CartonContentApi | getCartonContentById | GET /beta/cartonContent/{cartonContentId} | Get a cartonContent by id infoplus.CartonContentApi | getCartonContentTags | GET /beta/cartonContent/{cartonContentId}/tag | Get the tags for a cartonContent. infoplus.CartonContentApi | getDuplicateCartonContentById | GET /beta/cartonContent/duplicate/{cartonContentId} | Get a duplicated a cartonContent by id infoplus.CartonContentApi | updateCartonContent | PUT /beta/cartonContent | Update a cartonContent infoplus.CartonContentApi | updateCartonContentCustomFields | PUT /beta/cartonContent/customFields | Update a cartonContent custom fields infoplus.CartonTypeApi | addCartonType | POST /beta/cartonType | Create a cartonType infoplus.CartonTypeApi | addCartonTypeAudit | PUT /beta/cartonType/{cartonTypeId}/audit/{cartonTypeAudit} | Add new audit for a cartonType infoplus.CartonTypeApi | addCartonTypeTag | PUT /beta/cartonType/{cartonTypeId}/tag/{cartonTypeTag} | Add new tags for a cartonType. infoplus.CartonTypeApi | deleteCartonType | DELETE /beta/cartonType/{cartonTypeId} | Delete a cartonType infoplus.CartonTypeApi | deleteCartonTypeTag | DELETE /beta/cartonType/{cartonTypeId}/tag/{cartonTypeTag} | Delete a tag for a cartonType. infoplus.CartonTypeApi | getCartonTypeByFilter | GET /beta/cartonType/search | Search cartonTypes by filter infoplus.CartonTypeApi | getCartonTypeById | GET /beta/cartonType/{cartonTypeId} | Get a cartonType by id infoplus.CartonTypeApi | getCartonTypeTags | GET /beta/cartonType/{cartonTypeId}/tag | Get the tags for a cartonType. infoplus.CartonTypeApi | getDuplicateCartonTypeById | GET /beta/cartonType/duplicate/{cartonTypeId} | Get a duplicated a cartonType by id infoplus.CartonTypeApi | updateCartonType | PUT /beta/cartonType | Update a cartonType infoplus.CartonTypeApi | updateCartonTypeCustomFields | PUT /beta/cartonType/customFields | Update a cartonType custom fields infoplus.CustomerApi | addCustomer | POST /beta/customer | Create a customer infoplus.CustomerApi | addCustomerAudit | PUT /beta/customer/{customerId}/audit/{customerAudit} | Add new audit for a customer infoplus.CustomerApi | addCustomerTag | PUT /beta/customer/{customerId}/tag/{customerTag} | Add new tags for a customer. infoplus.CustomerApi | deleteCustomer | DELETE /beta/customer/{customerId} | Delete a customer infoplus.CustomerApi | deleteCustomerTag | DELETE /beta/customer/{customerId}/tag/{customerTag} | Delete a tag for a customer. infoplus.CustomerApi | getByCustomerNo | GET /beta/customer/getByCustomerNo | Get a customer by Customer No infoplus.CustomerApi | getCustomerByFilter | GET /beta/customer/search | Search customers by filter infoplus.CustomerApi | getCustomerById | GET /beta/customer/{customerId} | Get a customer by id infoplus.CustomerApi | getCustomerTags | GET /beta/customer/{customerId}/tag | Get the tags for a customer. infoplus.CustomerApi | getDuplicateCustomerById | GET /beta/customer/duplicate/{customerId} | Get a duplicated a customer by id infoplus.CustomerApi | updateCustomer | PUT /beta/customer | Update a customer infoplus.CustomerApi | updateCustomerCustomFields | PUT /beta/customer/customFields | Update a customer custom fields infoplus.CustomerInvoiceTemplateApi | addCustomerInvoiceTemplate | POST /beta/customerInvoiceTemplate | Create a customerInvoiceTemplate infoplus.CustomerInvoiceTemplateApi | addCustomerInvoiceTemplateAudit | PUT /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/audit/{customerInvoiceTemplateAudit} | Add new audit for a customerInvoiceTemplate infoplus.CustomerInvoiceTemplateApi | addCustomerInvoiceTemplateTag | PUT /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag/{customerInvoiceTemplateTag} | Add new tags for a customerInvoiceTemplate. infoplus.CustomerInvoiceTemplateApi | deleteCustomerInvoiceTemplate | DELETE /beta/customerInvoiceTemplate/{customerInvoiceTemplateId} | Delete a customerInvoiceTemplate infoplus.CustomerInvoiceTemplateApi | deleteCustomerInvoiceTemplateTag | DELETE /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag/{customerInvoiceTemplateTag} | Delete a tag for a customerInvoiceTemplate. infoplus.CustomerInvoiceTemplateApi | getCustomerInvoiceTemplateByFilter | GET /beta/customerInvoiceTemplate/search | Search customerInvoiceTemplates by filter infoplus.CustomerInvoiceTemplateApi | getCustomerInvoiceTemplateById | GET /beta/customerInvoiceTemplate/{customerInvoiceTemplateId} | Get a customerInvoiceTemplate by id infoplus.CustomerInvoiceTemplateApi | getCustomerInvoiceTemplateTags | GET /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag | Get the tags for a customerInvoiceTemplate. infoplus.CustomerInvoiceTemplateApi | getDuplicateCustomerInvoiceTemplateById | GET /beta/customerInvoiceTemplate/duplicate/{customerInvoiceTemplateId} | Get a duplicated a customerInvoiceTemplate by id infoplus.CustomerInvoiceTemplateApi | updateCustomerInvoiceTemplate | PUT /beta/customerInvoiceTemplate | Update a customerInvoiceTemplate infoplus.CustomerInvoiceTemplateLineApi | addCustomerInvoiceTemplateLineAudit | PUT /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/audit/{customerInvoiceTemplateLineAudit} | Add new audit for a customerInvoiceTemplateLine infoplus.CustomerInvoiceTemplateLineApi | addCustomerInvoiceTemplateLineTag | PUT /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag/{customerInvoiceTemplateLineTag} | Add new tags for a customerInvoiceTemplateLine. infoplus.CustomerInvoiceTemplateLineApi | deleteCustomerInvoiceTemplateLine | DELETE /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId} | Delete a customerInvoiceTemplateLine infoplus.CustomerInvoiceTemplateLineApi | deleteCustomerInvoiceTemplateLineTag | DELETE /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag/{customerInvoiceTemplateLineTag} | Delete a tag for a customerInvoiceTemplateLine. infoplus.CustomerInvoiceTemplateLineApi | getCustomerInvoiceTemplateLineByFilter | GET /beta/customerInvoiceTemplateLine/search | Search customerInvoiceTemplateLines by filter infoplus.CustomerInvoiceTemplateLineApi | getCustomerInvoiceTemplateLineById | GET /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId} | Get a customerInvoiceTemplateLine by id infoplus.CustomerInvoiceTemplateLineApi | getCustomerInvoiceTemplateLineTags | GET /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag | Get the tags for a customerInvoiceTemplateLine. infoplus.CustomerInvoiceTemplateLineApi | getDuplicateCustomerInvoiceTemplateLineById | GET /beta/customerInvoiceTemplateLine/duplicate/{customerInvoiceTemplateLineId} | Get a duplicated a customerInvoiceTemplateLine by id infoplus.CustomerInvoiceTemplateLineApi | updateCustomerInvoiceTemplateLine | PUT /beta/customerInvoiceTemplateLine | Update a customerInvoiceTemplateLine infoplus.EDIDocumentTypeApi | getEDIDocumentTypeById | GET /beta/eDIDocumentType/{eDIDocumentTypeId} | Get an eDIDocumentType by id infoplus.EDIDocumentTypeApi | getEDIDocumentTypeBySearchText | GET /beta/eDIDocumentType/search | Search eDIDocumentTypes infoplus.EmailTemplateApi | addEmailTemplate | POST /beta/emailTemplate | Create an emailTemplate infoplus.EmailTemplateApi | addEmailTemplateAudit | PUT /beta/emailTemplate/{emailTemplateId}/audit/{emailTemplateAudit} | Add new audit for an emailTemplate infoplus.EmailTemplateApi | addEmailTemplateTag | PUT /beta/emailTemplate/{emailTemplateId}/tag/{emailTemplateTag} | Add new tags for an emailTemplate. infoplus.EmailTemplateApi | deleteEmailTemplate | DELETE /beta/emailTemplate/{emailTemplateId} | Delete an emailTemplate infoplus.EmailTemplateApi | deleteEmailTemplateTag | DELETE /beta/emailTemplate/{emailTemplateId}/tag/{emailTemplateTag} | Delete a tag for an emailTemplate. infoplus.EmailTemplateApi | getDuplicateEmailTemplateById | GET /beta/emailTemplate/duplicate/{emailTemplateId} | Get a duplicated an emailTemplate by id infoplus.EmailTemplateApi | getEmailTemplateByFilter | GET /beta/emailTemplate/search | Search emailTemplates by filter infoplus.EmailTemplateApi | getEmailTemplateById | GET /beta/emailTemplate/{emailTemplateId} | Get an emailTemplate by id infoplus.EmailTemplateApi | getEmailTemplateTags | GET /beta/emailTemplate/{emailTemplateId}/tag | Get the tags for an emailTemplate. infoplus.EmailTemplateApi | updateEmailTemplate | PUT /beta/emailTemplate | Update an emailTemplate infoplus.EmailTemplateApi | updateEmailTemplateCustomFields | PUT /beta/emailTemplate/customFields | Update an emailTemplate custom fields infoplus.ExternalShipmentApi | addExternalShipment | POST /beta/externalShipment | Create an externalShipment infoplus.ExternalShipmentApi | addExternalShipmentAudit | PUT /beta/externalShipment/{externalShipmentId}/audit/{externalShipmentAudit} | Add new audit for an externalShipment infoplus.ExternalShipmentApi | addExternalShipmentTag | PUT /beta/externalShipment/{externalShipmentId}/tag/{externalShipmentTag} | Add new tags for an externalShipment. infoplus.ExternalShipmentApi | deleteExternalShipment | DELETE /beta/externalShipment/{externalShipmentId} | Delete an externalShipment infoplus.ExternalShipmentApi | deleteExternalShipmentTag | DELETE /beta/externalShipment/{externalShipmentId}/tag/{externalShipmentTag} | Delete a tag for an externalShipment. infoplus.ExternalShipmentApi | getDuplicateExternalShipmentById | GET /beta/externalShipment/duplicate/{externalShipmentId} | Get a duplicated an externalShipment by id infoplus.ExternalShipmentApi | getExternalShipmentByFilter | GET /beta/externalShipment/search | Search externalShipments by filter infoplus.ExternalShipmentApi | getExternalShipmentById | GET /beta/externalShipment/{externalShipmentId} | Get an externalShipment by id infoplus.ExternalShipmentApi | getExternalShipmentTags | GET /beta/externalShipment/{externalShipmentId}/tag | Get the tags for an externalShipment. infoplus.ExternalShipmentApi | updateExternalShipment | PUT /beta/externalShipment | Update an externalShipment infoplus.ExternalShipmentApi | updateExternalShipmentCustomFields | PUT /beta/externalShipment/customFields | Update an externalShipment custom fields infoplus.ExternalShippingSystemApi | addExternalShippingSystem | POST /beta/externalShippingSystem | Create an externalShippingSystem infoplus.ExternalShippingSystemApi | addExternalShippingSystemAudit | PUT /beta/externalShippingSystem/{externalShippingSystemId}/audit/{externalShippingSystemAudit} | Add new audit for an externalShippingSystem infoplus.ExternalShippingSystemApi | addExternalShippingSystemTag | PUT /beta/externalShippingSystem/{externalShippingSystemId}/tag/{externalShippingSystemTag} | Add new tags for an externalShippingSystem. infoplus.ExternalShippingSystemApi | deleteExternalShippingSystem | DELETE /beta/externalShippingSystem/{externalShippingSystemId} | Delete an externalShippingSystem infoplus.ExternalShippingSystemApi | deleteExternalShippingSystemTag | DELETE /beta/externalShippingSystem/{externalShippingSystemId}/tag/{externalShippingSystemTag} | Delete a tag for an externalShippingSystem. infoplus.ExternalShippingSystemApi | getDuplicateExternalShippingSystemById | GET /beta/externalShippingSystem/duplicate/{externalShippingSystemId} | Get a duplicated an externalShippingSystem by id infoplus.ExternalShippingSystemApi | getExternalShippingSystemByFilter | GET /beta/externalShippingSystem/search | Search externalShippingSystems by filter infoplus.ExternalShippingSystemApi | getExternalShippingSystemById | GET /beta/externalShippingSystem/{externalShippingSystemId} | Get an externalShippingSystem by id infoplus.ExternalShippingSystemApi | getExternalShippingSystemTags | GET /beta/externalShippingSystem/{externalShippingSystemId}/tag | Get the tags for an externalShippingSystem. infoplus.ExternalShippingSystemApi | updateExternalShippingSystem | PUT /beta/externalShippingSystem | Update an externalShippingSystem infoplus.ExternalShippingSystemApi | updateExternalShippingSystemCustomFields | PUT /beta/externalShippingSystem/customFields | Update an externalShippingSystem custom fields infoplus.FulfillmentPlanApi | addFulfillmentPlan | POST /beta/fulfillmentPlan | Create a fulfillmentPlan infoplus.FulfillmentPlanApi | addFulfillmentPlanAudit | PUT /beta/fulfillmentPlan/{fulfillmentPlanId}/audit/{fulfillmentPlanAudit} | Add new audit for a fulfillmentPlan infoplus.FulfillmentPlanApi | addFulfillmentPlanTag | PUT /beta/fulfillmentPlan/{fulfillmentPlanId}/tag/{fulfillmentPlanTag} | Add new tags for a fulfillmentPlan. infoplus.FulfillmentPlanApi | deleteFulfillmentPlan | DELETE /beta/fulfillmentPlan/{fulfillmentPlanId} | Delete a fulfillmentPlan infoplus.FulfillmentPlanApi | deleteFulfillmentPlanTag | DELETE /beta/fulfillmentPlan/{fulfillmentPlanId}/tag/{fulfillmentPlanTag} | Delete a tag for a fulfillmentPlan. infoplus.FulfillmentPlanApi | getDuplicateFulfillmentPlanById | GET /beta/fulfillmentPlan/duplicate/{fulfillmentPlanId} | Get a duplicated a fulfillmentPlan by id infoplus.FulfillmentPlanApi | getFulfillmentPlanByFilter | GET /beta/fulfillmentPlan/search | Search fulfillmentPlans by filter infoplus.FulfillmentPlanApi | getFulfillmentPlanById | GET /beta/fulfillmentPlan/{fulfillmentPlanId} | Get a fulfillmentPlan by id infoplus.FulfillmentPlanApi | getFulfillmentPlanTags | GET /beta/fulfillmentPlan/{fulfillmentPlanId}/tag | Get the tags for a fulfillmentPlan. infoplus.FulfillmentPlanApi | updateFulfillmentPlan | PUT /beta/fulfillmentPlan | Update a fulfillmentPlan infoplus.FulfillmentPlanApi | updateFulfillmentPlanCustomFields | PUT /beta/fulfillmentPlan/customFields | Update a fulfillmentPlan custom fields infoplus.FulfillmentProcessApi | addFulfillmentProcessAudit | PUT /beta/fulfillmentProcess/{fulfillmentProcessId}/audit/{fulfillmentProcessAudit} | Add new audit for a fulfillmentProcess infoplus.FulfillmentProcessApi | addFulfillmentProcessTag | PUT /beta/fulfillmentProcess/{fulfillmentProcessId}/tag/{fulfillmentProcessTag} | Add new tags for a fulfillmentProcess. infoplus.FulfillmentProcessApi | deleteFulfillmentProcessTag | DELETE /beta/fulfillmentProcess/{fulfillmentProcessId}/tag/{fulfillmentProcessTag} | Delete a tag for a fulfillmentProcess. infoplus.FulfillmentProcessApi | getDuplicateFulfillmentProcessById | GET /beta/fulfillmentProcess/duplicate/{fulfillmentProcessId} | Get a duplicated a fulfillmentProcess by id infoplus.FulfillmentProcessApi | getFulfillmentProcessByFilter | GET /beta/fulfillmentProcess/search | Search fulfillmentProcesses by filter infoplus.FulfillmentProcessApi | getFulfillmentProcessById | GET /beta/fulfillmentProcess/{fulfillmentProcessId} | Get a fulfillmentProcess by id infoplus.FulfillmentProcessApi | getFulfillmentProcessTags | GET /beta/fulfillmentProcess/{fulfillmentProcessId}/tag | Get the tags for a fulfillmentProcess. infoplus.FulfillmentProcessApi | updateFulfillmentProcessCustomFields | PUT /beta/fulfillmentProcess/customFields | Update a fulfillmentProcess custom fields infoplus.FulfillmentProcessLogApi | addFulfillmentProcessLogAudit | PUT /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/audit/{fulfillmentProcessLogAudit} | Add new audit for a fulfillmentProcessLog infoplus.FulfillmentProcessLogApi | addFulfillmentProcessLogTag | PUT /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag/{fulfillmentProcessLogTag} | Add new tags for a fulfillmentProcessLog. infoplus.FulfillmentProcessLogApi | deleteFulfillmentProcessLogTag | DELETE /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag/{fulfillmentProcessLogTag} | Delete a tag for a fulfillmentProcessLog. infoplus.FulfillmentProcessLogApi | getDuplicateFulfillmentProcessLogById | GET /beta/fulfillmentProcessLog/duplicate/{fulfillmentProcessLogId} | Get a duplicated a fulfillmentProcessLog by id infoplus.FulfillmentProcessLogApi | getFulfillmentProcessLogByFilter | GET /beta/fulfillmentProcessLog/search | Search fulfillmentProcessLogs by filter infoplus.FulfillmentProcessLogApi | getFulfillmentProcessLogById | GET /beta/fulfillmentProcessLog/{fulfillmentProcessLogId} | Get a fulfillmentProcessLog by id infoplus.FulfillmentProcessLogApi | getFulfillmentProcessLogTags | GET /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag | Get the tags for a fulfillmentProcessLog. infoplus.IntegrationPartnerApi | getIntegrationPartnerById | GET /beta/integrationPartner/{integrationPartnerId} | Get an integrationPartner by id infoplus.IntegrationPartnerApi | getIntegrationPartnerBySearchText | GET /beta/integrationPartner/search | Search integrationPartners infoplus.InventoryAdjustmentApi | addInventoryAdjustmentAudit | PUT /beta/inventoryAdjustment/{inventoryAdjustmentId}/audit/{inventoryAdjustmentAudit} | Add new audit for an inventoryAdjustment infoplus.InventoryAdjustmentApi | addInventoryAdjustmentTag | PUT /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag/{inventoryAdjustmentTag} | Add new tags for an inventoryAdjustment. infoplus.InventoryAdjustmentApi | deleteInventoryAdjustmentTag | DELETE /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag/{inventoryAdjustmentTag} | Delete a tag for an inventoryAdjustment. infoplus.InventoryAdjustmentApi | getDuplicateInventoryAdjustmentById | GET /beta/inventoryAdjustment/duplicate/{inventoryAdjustmentId} | Get a duplicated an inventoryAdjustment by id infoplus.InventoryAdjustmentApi | getInventoryAdjustmentByFilter | GET /beta/inventoryAdjustment/search | Search inventoryAdjustments by filter infoplus.InventoryAdjustmentApi | getInventoryAdjustmentById | GET /beta/inventoryAdjustment/{inventoryAdjustmentId} | Get an inventoryAdjustment by id infoplus.InventoryAdjustmentApi | getInventoryAdjustmentTags | GET /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag | Get the tags for an inventoryAdjustment. infoplus.InventoryAdjustmentApi | updateInventoryAdjustmentCustomFields | PUT /beta/inventoryAdjustment/customFields | Update an inventoryAdjustment custom fields infoplus.InventoryDetailApi | addInventoryDetailAudit | PUT /beta/inventoryDetail/{inventoryDetailId}/audit/{inventoryDetailAudit} | Add new audit for an inventoryDetail infoplus.InventoryDetailApi | addInventoryDetailTag | PUT /beta/inventoryDetail/{inventoryDetailId}/tag/{inventoryDetailTag} | Add new tags for an inventoryDetail. infoplus.InventoryDetailApi | deleteInventoryDetailTag | DELETE /beta/inventoryDetail/{inventoryDetailId}/tag/{inventoryDetailTag} | Delete a tag for an inventoryDetail. infoplus.InventoryDetailApi | getDuplicateInventoryDetailById | GET /beta/inventoryDetail/duplicate/{inventoryDetailId} | Get a duplicated an inventoryDetail by id infoplus.InventoryDetailApi | getInventoryDetailByFilter | GET /beta/inventoryDetail/search | Search inventoryDetails by filter infoplus.InventoryDetailApi | getInventoryDetailById | GET /beta/inventoryDetail/{inventoryDetailId} | Get an inventoryDetail by id infoplus.InventoryDetailApi | getInventoryDetailTags | GET /beta/inventoryDetail/{inventoryDetailId}/tag | Get the tags for an inventoryDetail. infoplus.InventoryDetailApi | updateInventoryDetailCustomFields | PUT /beta/inventoryDetail/customFields | Update an inventoryDetail custom fields infoplus.InventorySnapshotApi | addInventorySnapshotAudit | PUT /beta/inventorySnapshot/{inventorySnapshotId}/audit/{inventorySnapshotAudit} | Add new audit for an inventorySnapshot infoplus.InventorySnapshotApi | addInventorySnapshotTag | PUT /beta/inventorySnapshot/{inventorySnapshotId}/tag/{inventorySnapshotTag} | Add new tags for an inventorySnapshot. infoplus.InventorySnapshotApi | deleteInventorySnapshotTag | DELETE /beta/inventorySnapshot/{inventorySnapshotId}/tag/{inventorySnapshotTag} | Delete a tag for an inventorySnapshot. infoplus.InventorySnapshotApi | getDuplicateInventorySnapshotById | GET /beta/inventorySnapshot/duplicate/{inventorySnapshotId} | Get a duplicated an inventorySnapshot by id infoplus.InventorySnapshotApi | getInventorySnapshotByFilter | GET /beta/inventorySnapshot/search | Search inventorySnapshots by filter infoplus.InventorySnapshotApi | getInventorySnapshotById | GET /beta/inventorySnapshot/{inventorySnapshotId} | Get an inventorySnapshot by id infoplus.InventorySnapshotApi | getInventorySnapshotTags | GET /beta/inventorySnapshot/{inventorySnapshotId}/tag | Get the tags for an inventorySnapshot. infoplus.InventoryStorageActivityApi | addInventoryStorageActivity | POST /beta/inventoryStorageActivity | Create an inventoryStorageActivity infoplus.InventoryStorageActivityApi | addInventoryStorageActivityAudit | PUT /beta/inventoryStorageActivity/{inventoryStorageActivityId}/audit/{inventoryStorageActivityAudit} | Add new audit for an inventoryStorageActivity infoplus.InventoryStorageActivityApi | addInventoryStorageActivityTag | PUT /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag/{inventoryStorageActivityTag} | Add new tags for an inventoryStorageActivity. infoplus.InventoryStorageActivityApi | deleteInventoryStorageActivity | DELETE /beta/inventoryStorageActivity/{inventoryStorageActivityId} | Delete an inventoryStorageActivity infoplus.InventoryStorageActivityApi | deleteInventoryStorageActivityTag | DELETE /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag/{inventoryStorageActivityTag} | Delete a tag for an inventoryStorageActivity. infoplus.InventoryStorageActivityApi | getDuplicateInventoryStorageActivityById | GET /beta/inventoryStorageActivity/duplicate/{inventoryStorageActivityId} | Get a duplicated an inventoryStorageActivity by id infoplus.InventoryStorageActivityApi | getInventoryStorageActivityByFilter | GET /beta/inventoryStorageActivity/search | Search inventoryStorageActivitys by filter infoplus.InventoryStorageActivityApi | getInventoryStorageActivityById | GET /beta/inventoryStorageActivity/{inventoryStorageActivityId} | Get an inventoryStorageActivity by id infoplus.InventoryStorageActivityApi | getInventoryStorageActivityTags | GET /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag | Get the tags for an inventoryStorageActivity. infoplus.InventoryStorageActivityApi | updateInventoryStorageActivity | PUT /beta/inventoryStorageActivity | Update an inventoryStorageActivity infoplus.InvoiceWorksheetApi | addInvoiceWorksheet | POST /beta/invoiceWorksheet | Create an invoiceWorksheet infoplus.InvoiceWorksheetApi | addInvoiceWorksheetAudit | PUT /beta/invoiceWorksheet/{invoiceWorksheetId}/audit/{invoiceWorksheetAudit} | Add new audit for an invoiceWorksheet infoplus.InvoiceWorksheetApi | addInvoiceWorksheetTag | PUT /beta/invoiceWorksheet/{invoiceWorksheetId}/tag/{invoiceWorksheetTag} | Add new tags for an invoiceWorksheet. infoplus.InvoiceWorksheetApi | deleteInvoiceWorksheet | DELETE /beta/invoiceWorksheet/{invoiceWorksheetId} | Delete an invoiceWorksheet infoplus.InvoiceWorksheetApi | deleteInvoiceWorksheetTag | DELETE /beta/invoiceWorksheet/{invoiceWorksheetId}/tag/{invoiceWorksheetTag} | Delete a tag for an invoiceWorksheet. infoplus.InvoiceWorksheetApi | getDuplicateInvoiceWorksheetById | GET /beta/invoiceWorksheet/duplicate/{invoiceWorksheetId} | Get a duplicated an invoiceWorksheet by id infoplus.InvoiceWorksheetApi | getInvoiceWorksheetByFilter | GET /beta/invoiceWorksheet/search | Search invoiceWorksheets by filter infoplus.InvoiceWorksheetApi | getInvoiceWorksheetById | GET /beta/invoiceWorksheet/{invoiceWorksheetId} | Get an invoiceWorksheet by id infoplus.InvoiceWorksheetApi | getInvoiceWorksheetTags | GET /beta/invoiceWorksheet/{invoiceWorksheetId}/tag | Get the tags for an invoiceWorksheet. infoplus.InvoiceWorksheetApi | updateInvoiceWorksheet | PUT /beta/invoiceWorksheet | Update an invoiceWorksheet infoplus.InvoiceWorksheetLineApi | addInvoiceWorksheetLine | POST /beta/invoiceWorksheetLine | Create an invoiceWorksheetLine infoplus.InvoiceWorksheetLineApi | addInvoiceWorksheetLineAudit | PUT /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/audit/{invoiceWorksheetLineAudit} | Add new audit for an invoiceWorksheetLine infoplus.InvoiceWorksheetLineApi | addInvoiceWorksheetLineTag | PUT /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Add new tags for an invoiceWorksheetLine. infoplus.InvoiceWorksheetLineApi | deleteInvoiceWorksheetLine | DELETE /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Delete an invoiceWorksheetLine infoplus.InvoiceWorksheetLineApi | deleteInvoiceWorksheetLineTag | DELETE /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Delete a tag for an invoiceWorksheetLine. infoplus.InvoiceWorksheetLineApi | getDuplicateInvoiceWorksheetLineById | GET /beta/invoiceWorksheetLine/duplicate/{invoiceWorksheetLineId} | Get a duplicated an invoiceWorksheetLine by id infoplus.InvoiceWorksheetLineApi | getInvoiceWorksheetLineByFilter | GET /beta/invoiceWorksheetLine/search | Search invoiceWorksheetLines by filter infoplus.InvoiceWorksheetLineApi | getInvoiceWorksheetLineById | GET /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Get an invoiceWorksheetLine by id infoplus.InvoiceWorksheetLineApi | getInvoiceWorksheetLineTags | GET /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag | Get the tags for an invoiceWorksheetLine. infoplus.InvoiceWorksheetLineApi | updateInvoiceWorksheetLine | PUT /beta/invoiceWorksheetLine | Update an invoiceWorksheetLine infoplus.ItemApi | addItem | POST /beta/item | Create an item infoplus.ItemApi | addItemAudit | PUT /beta/item/{itemId}/audit/{itemAudit} | Add new audit for an item infoplus.ItemApi | addItemTag | PUT /beta/item/{itemId}/tag/{itemTag} | Add new tags for an item. infoplus.ItemApi | deleteItem | DELETE /beta/item/{itemId} | Delete an item infoplus.ItemApi | deleteItemTag | DELETE /beta/item/{itemId}/tag/{itemTag} | Delete a tag for an item. infoplus.ItemApi | getBySKU | GET /beta/item/getBySKU | Get an item by SKU infoplus.ItemApi | getDuplicateItemById | GET /beta/item/duplicate/{itemId} | Get a duplicated an item by id *infoplus.Item