# infoplus-javascript-client

infoplus - JavaScript client for infoplus-javascript-client
Infoplus API.
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/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](http://www.infopluscommerce.com)

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

To publish the library as a [npm](https://www.npmjs.com/),
please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).

Then install it via:

```shell
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:

```shell
npm install
```

Next, [link](https://docs.npmjs.com/cli/link) it globally in npm with the following, also from `JAVASCRIPT_CLIENT_DIR`:

```shell
npm link
```

Finally, switch to the directory you want to use your infoplus-javascript-client from, and run:

```shell
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:

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). 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):

```shell
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:

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

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
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**](docs/AisleApi.md#addAisle) | **POST** /beta/aisle | Create an aisle
*infoplus.AisleApi* | [**addAisleAudit**](docs/AisleApi.md#addAisleAudit) | **PUT** /beta/aisle/{aisleId}/audit/{aisleAudit} | Add new audit for an aisle
*infoplus.AisleApi* | [**addAisleFile**](docs/AisleApi.md#addAisleFile) | **POST** /beta/aisle/{aisleId}/file/{fileName} | Attach a file to an aisle
*infoplus.AisleApi* | [**addAisleFileByURL**](docs/AisleApi.md#addAisleFileByURL) | **POST** /beta/aisle/{aisleId}/file | Attach a file to an aisle by URL.
*infoplus.AisleApi* | [**addAisleTag**](docs/AisleApi.md#addAisleTag) | **PUT** /beta/aisle/{aisleId}/tag/{aisleTag} | Add new tags for an aisle.
*infoplus.AisleApi* | [**deleteAisle**](docs/AisleApi.md#deleteAisle) | **DELETE** /beta/aisle/{aisleId} | Delete an aisle
*infoplus.AisleApi* | [**deleteAisleFile**](docs/AisleApi.md#deleteAisleFile) | **DELETE** /beta/aisle/{aisleId}/file/{fileId} | Delete a file for an aisle.
*infoplus.AisleApi* | [**deleteAisleTag**](docs/AisleApi.md#deleteAisleTag) | **DELETE** /beta/aisle/{aisleId}/tag/{aisleTag} | Delete a tag for an aisle.
*infoplus.AisleApi* | [**getAisleByFilter**](docs/AisleApi.md#getAisleByFilter) | **GET** /beta/aisle/search | Search aisles by filter
*infoplus.AisleApi* | [**getAisleById**](docs/AisleApi.md#getAisleById) | **GET** /beta/aisle/{aisleId} | Get an aisle by id
*infoplus.AisleApi* | [**getAisleFiles**](docs/AisleApi.md#getAisleFiles) | **GET** /beta/aisle/{aisleId}/file | Get the files for an aisle.
*infoplus.AisleApi* | [**getAisleTags**](docs/AisleApi.md#getAisleTags) | **GET** /beta/aisle/{aisleId}/tag | Get the tags for an aisle.
*infoplus.AisleApi* | [**getDuplicateAisleById**](docs/AisleApi.md#getDuplicateAisleById) | **GET** /beta/aisle/duplicate/{aisleId} | Get a duplicated an aisle by id
*infoplus.AisleApi* | [**updateAisle**](docs/AisleApi.md#updateAisle) | **PUT** /beta/aisle | Update an aisle
*infoplus.AisleApi* | [**updateAisleCustomFields**](docs/AisleApi.md#updateAisleCustomFields) | **PUT** /beta/aisle/customFields | Update an aisle custom fields
*infoplus.AlertApi* | [**addAlert**](docs/AlertApi.md#addAlert) | **POST** /beta/alert | Create an alert
*infoplus.AlertApi* | [**addAlertAudit**](docs/AlertApi.md#addAlertAudit) | **PUT** /beta/alert/{alertId}/audit/{alertAudit} | Add new audit for an alert
*infoplus.AlertApi* | [**addAlertFile**](docs/AlertApi.md#addAlertFile) | **POST** /beta/alert/{alertId}/file/{fileName} | Attach a file to an alert
*infoplus.AlertApi* | [**addAlertFileByURL**](docs/AlertApi.md#addAlertFileByURL) | **POST** /beta/alert/{alertId}/file | Attach a file to an alert by URL.
*infoplus.AlertApi* | [**addAlertTag**](docs/AlertApi.md#addAlertTag) | **PUT** /beta/alert/{alertId}/tag/{alertTag} | Add new tags for an alert.
*infoplus.AlertApi* | [**deleteAlertFile**](docs/AlertApi.md#deleteAlertFile) | **DELETE** /beta/alert/{alertId}/file/{fileId} | Delete a file for an alert.
*infoplus.AlertApi* | [**deleteAlertTag**](docs/AlertApi.md#deleteAlertTag) | **DELETE** /beta/alert/{alertId}/tag/{alertTag} | Delete a tag for an alert.
*infoplus.AlertApi* | [**getAlertByFilter**](docs/AlertApi.md#getAlertByFilter) | **GET** /beta/alert/search | Search alerts by filter
*infoplus.AlertApi* | [**getAlertById**](docs/AlertApi.md#getAlertById) | **GET** /beta/alert/{alertId} | Get an alert by id
*infoplus.AlertApi* | [**getAlertFiles**](docs/AlertApi.md#getAlertFiles) | **GET** /beta/alert/{alertId}/file | Get the files for an alert.
*infoplus.AlertApi* | [**getAlertTags**](docs/AlertApi.md#getAlertTags) | **GET** /beta/alert/{alertId}/tag | Get the tags for an alert.
*infoplus.AlertApi* | [**getDuplicateAlertById**](docs/AlertApi.md#getDuplicateAlertById) | **GET** /beta/alert/duplicate/{alertId} | Get a duplicated an alert by id
*infoplus.AlertApi* | [**updateAlertCustomFields**](docs/AlertApi.md#updateAlertCustomFields) | **PUT** /beta/alert/customFields | Update an alert custom fields
*infoplus.AsnApi* | [**addAsn**](docs/AsnApi.md#addAsn) | **POST** /beta/asn | Create an asn
*infoplus.AsnApi* | [**addAsnAudit**](docs/AsnApi.md#addAsnAudit) | **PUT** /beta/asn/{asnId}/audit/{asnAudit} | Add new audit for an asn
*infoplus.AsnApi* | [**addAsnFile**](docs/AsnApi.md#addAsnFile) | **POST** /beta/asn/{asnId}/file/{fileName} | Attach a file to an asn
*infoplus.AsnApi* | [**addAsnFileByURL**](docs/AsnApi.md#addAsnFileByURL) | **POST** /beta/asn/{asnId}/file | Attach a file to an asn by URL.
*infoplus.AsnApi* | [**addAsnTag**](docs/AsnApi.md#addAsnTag) | **PUT** /beta/asn/{asnId}/tag/{asnTag} | Add new tags for an asn.
*infoplus.AsnApi* | [**deleteAsn**](docs/AsnApi.md#deleteAsn) | **DELETE** /beta/asn/{asnId} | Delete an asn
*infoplus.AsnApi* | [**deleteAsnFile**](docs/AsnApi.md#deleteAsnFile) | **DELETE** /beta/asn/{asnId}/file/{fileId} | Delete a file for an asn.
*infoplus.AsnApi* | [**deleteAsnTag**](docs/AsnApi.md#deleteAsnTag) | **DELETE** /beta/asn/{asnId}/tag/{asnTag} | Delete a tag for an asn.
*infoplus.AsnApi* | [**getAsnByFilter**](docs/AsnApi.md#getAsnByFilter) | **GET** /beta/asn/search | Search asns by filter
*infoplus.AsnApi* | [**getAsnById**](docs/AsnApi.md#getAsnById) | **GET** /beta/asn/{asnId} | Get an asn by id
*infoplus.AsnApi* | [**getAsnFiles**](docs/AsnApi.md#getAsnFiles) | **GET** /beta/asn/{asnId}/file | Get the files for an asn.
*infoplus.AsnApi* | [**getAsnTags**](docs/AsnApi.md#getAsnTags) | **GET** /beta/asn/{asnId}/tag | Get the tags for an asn.
*infoplus.AsnApi* | [**getDuplicateAsnById**](docs/AsnApi.md#getDuplicateAsnById) | **GET** /beta/asn/duplicate/{asnId} | Get a duplicated an asn by id
*infoplus.AsnApi* | [**updateAsn**](docs/AsnApi.md#updateAsn) | **PUT** /beta/asn | Update an asn
*infoplus.AsnApi* | [**updateAsnCustomFields**](docs/AsnApi.md#updateAsnCustomFields) | **PUT** /beta/asn/customFields | Update an asn custom fields
*infoplus.BillOfLadingApi* | [**addBillOfLading**](docs/BillOfLadingApi.md#addBillOfLading) | **POST** /beta/billOfLading | Create a billOfLading
*infoplus.BillOfLadingApi* | [**addBillOfLadingAudit**](docs/BillOfLadingApi.md#addBillOfLadingAudit) | **PUT** /beta/billOfLading/{billOfLadingId}/audit/{billOfLadingAudit} | Add new audit for a billOfLading
*infoplus.BillOfLadingApi* | [**addBillOfLadingFile**](docs/BillOfLadingApi.md#addBillOfLadingFile) | **POST** /beta/billOfLading/{billOfLadingId}/file/{fileName} | Attach a file to a billOfLading
*infoplus.BillOfLadingApi* | [**addBillOfLadingFileByURL**](docs/BillOfLadingApi.md#addBillOfLadingFileByURL) | **POST** /beta/billOfLading/{billOfLadingId}/file | Attach a file to a billOfLading by URL.
*infoplus.BillOfLadingApi* | [**addBillOfLadingTag**](docs/BillOfLadingApi.md#addBillOfLadingTag) | **PUT** /beta/billOfLading/{billOfLadingId}/tag/{billOfLadingTag} | Add new tags for a billOfLading.
*infoplus.BillOfLadingApi* | [**deleteBillOfLading**](docs/BillOfLadingApi.md#deleteBillOfLading) | **DELETE** /beta/billOfLading/{billOfLadingId} | Delete a billOfLading
*infoplus.BillOfLadingApi* | [**deleteBillOfLadingFile**](docs/BillOfLadingApi.md#deleteBillOfLadingFile) | **DELETE** /beta/billOfLading/{billOfLadingId}/file/{fileId} | Delete a file for a billOfLading.
*infoplus.BillOfLadingApi* | [**deleteBillOfLadingTag**](docs/BillOfLadingApi.md#deleteBillOfLadingTag) | **DELETE** /beta/billOfLading/{billOfLadingId}/tag/{billOfLadingTag} | Delete a tag for a billOfLading.
*infoplus.BillOfLadingApi* | [**getBillOfLadingByFilter**](docs/BillOfLadingApi.md#getBillOfLadingByFilter) | **GET** /beta/billOfLading/search | Search billOfLadings by filter
*infoplus.BillOfLadingApi* | [**getBillOfLadingById**](docs/BillOfLadingApi.md#getBillOfLadingById) | **GET** /beta/billOfLading/{billOfLadingId} | Get a billOfLading by id
*infoplus.BillOfLadingApi* | [**getBillOfLadingFiles**](docs/BillOfLadingApi.md#getBillOfLadingFiles) | **GET** /beta/billOfLading/{billOfLadingId}/file | Get the files for a billOfLading.
*infoplus.BillOfLadingApi* | [**getBillOfLadingTags**](docs/BillOfLadingApi.md#getBillOfLadingTags) | **GET** /beta/billOfLading/{billOfLadingId}/tag | Get the tags for a billOfLading.
*infoplus.BillOfLadingApi* | [**getDuplicateBillOfLadingById**](docs/BillOfLadingApi.md#getDuplicateBillOfLadingById) | **GET** /beta/billOfLading/duplicate/{billOfLadingId} | Get a duplicated a billOfLading by id
*infoplus.BillOfLadingApi* | [**updateBillOfLading**](docs/BillOfLadingApi.md#updateBillOfLading) | **PUT** /beta/billOfLading | Update a billOfLading
*infoplus.BillOfLadingApi* | [**updateBillOfLadingCustomFields**](docs/BillOfLadingApi.md#updateBillOfLadingCustomFields) | **PUT** /beta/billOfLading/customFields | Update a billOfLading custom fields
*infoplus.BillingCodeApi* | [**addBillingCode**](docs/BillingCodeApi.md#addBillingCode) | **POST** /beta/billingCode | Create a billingCode
*infoplus.BillingCodeApi* | [**addBillingCodeAudit**](docs/BillingCodeApi.md#addBillingCodeAudit) | **PUT** /beta/billingCode/{billingCodeId}/audit/{billingCodeAudit} | Add new audit for a billingCode
*infoplus.BillingCodeApi* | [**addBillingCodeFile**](docs/BillingCodeApi.md#addBillingCodeFile) | **POST** /beta/billingCode/{billingCodeId}/file/{fileName} | Attach a file to a billingCode
*infoplus.BillingCodeApi* | [**addBillingCodeFileByURL**](docs/BillingCodeApi.md#addBillingCodeFileByURL) | **POST** /beta/billingCode/{billingCodeId}/file | Attach a file to a billingCode by URL.
*infoplus.BillingCodeApi* | [**addBillingCodeTag**](docs/BillingCodeApi.md#addBillingCodeTag) | **PUT** /beta/billingCode/{billingCodeId}/tag/{billingCodeTag} | Add new tags for a billingCode.
*infoplus.BillingCodeApi* | [**deleteBillingCode**](docs/BillingCodeApi.md#deleteBillingCode) | **DELETE** /beta/billingCode/{billingCodeId} | Delete a billingCode
*infoplus.BillingCodeApi* | [**deleteBillingCodeFile**](docs/BillingCodeApi.md#deleteBillingCodeFile) | **DELETE** /beta/billingCode/{billingCodeId}/file/{fileId} | Delete a file for a billingCode.
*infoplus.BillingCodeApi* | [**deleteBillingCodeTag**](docs/BillingCodeApi.md#deleteBillingCodeTag) | **DELETE** /beta/billingCode/{billingCodeId}/tag/{billingCodeTag} | Delete a tag for a billingCode.
*infoplus.BillingCodeApi* | [**getBillingCodeByFilter**](docs/BillingCodeApi.md#getBillingCodeByFilter) | **GET** /beta/billingCode/search | Search billingCodes by filter
*infoplus.BillingCodeApi* | [**getBillingCodeById**](docs/BillingCodeApi.md#getBillingCodeById) | **GET** /beta/billingCode/{billingCodeId} | Get a billingCode by id
*infoplus.BillingCodeApi* | [**getBillingCodeFiles**](docs/BillingCodeApi.md#getBillingCodeFiles) | **GET** /beta/billingCode/{billingCodeId}/file | Get the files for a billingCode.
*infoplus.BillingCodeApi* | [**getBillingCodeTags**](docs/BillingCodeApi.md#getBillingCodeTags) | **GET** /beta/billingCode/{billingCodeId}/tag | Get the tags for a billingCode.
*infoplus.BillingCodeApi* | [**getDuplicateBillingCodeById**](docs/BillingCodeApi.md#getDuplicateBillingCodeById) | **GET** /beta/billingCode/duplicate/{billingCodeId} | Get a duplicated a billingCode by id
*infoplus.BillingCodeApi* | [**updateBillingCode**](docs/BillingCodeApi.md#updateBillingCode) | **PUT** /beta/billingCode | Update a billingCode
*infoplus.BillingCodeApi* | [**updateBillingCodeCustomFields**](docs/BillingCodeApi.md#updateBillingCodeCustomFields) | **PUT** /beta/billingCode/customFields | Update a billingCode custom fields
*infoplus.BillingCodeActivityApi* | [**addBillingCodeActivity**](docs/BillingCodeActivityApi.md#addBillingCodeActivity) | **POST** /beta/billingCodeActivity | Create a billingCodeActivity
*infoplus.BillingCodeActivityApi* | [**addBillingCodeActivityAudit**](docs/BillingCodeActivityApi.md#addBillingCodeActivityAudit) | **PUT** /beta/billingCodeActivity/{billingCodeActivityId}/audit/{billingCodeActivityAudit} | Add new audit for a billingCodeActivity
*infoplus.BillingCodeActivityApi* | [**addBillingCodeActivityFile**](docs/BillingCodeActivityApi.md#addBillingCodeActivityFile) | **POST** /beta/billingCodeActivity/{billingCodeActivityId}/file/{fileName} | Attach a file to a billingCodeActivity
*infoplus.BillingCodeActivityApi* | [**addBillingCodeActivityFileByURL**](docs/BillingCodeActivityApi.md#addBillingCodeActivityFileByURL) | **POST** /beta/billingCodeActivity/{billingCodeActivityId}/file | Attach a file to a billingCodeActivity by URL.
*infoplus.BillingCodeActivityApi* | [**addBillingCodeActivityTag**](docs/BillingCodeActivityApi.md#addBillingCodeActivityTag) | **PUT** /beta/billingCodeActivity/{billingCodeActivityId}/tag/{billingCodeActivityTag} | Add new tags for a billingCodeActivity.
*infoplus.BillingCodeActivityApi* | [**deleteBillingCodeActivity**](docs/BillingCodeActivityApi.md#deleteBillingCodeActivity) | **DELETE** /beta/billingCodeActivity/{billingCodeActivityId} | Delete a billingCodeActivity
*infoplus.BillingCodeActivityApi* | [**deleteBillingCodeActivityFile**](docs/BillingCodeActivityApi.md#deleteBillingCodeActivityFile) | **DELETE** /beta/billingCodeActivity/{billingCodeActivityId}/file/{fileId} | Delete a file for a billingCodeActivity.
*infoplus.BillingCodeActivityApi* | [**deleteBillingCodeActivityTag**](docs/BillingCodeActivityApi.md#deleteBillingCodeActivityTag) | **DELETE** /beta/billingCodeActivity/{billingCodeActivityId}/tag/{billingCodeActivityTag} | Delete a tag for a billingCodeActivity.
*infoplus.BillingCodeActivityApi* | [**getBillingCodeActivityByFilter**](docs/BillingCodeActivityApi.md#getBillingCodeActivityByFilter) | **GET** /beta/billingCodeActivity/search | Search billingCodeActivitys by filter
*infoplus.BillingCodeActivityApi* | [**getBillingCodeActivityById**](docs/BillingCodeActivityApi.md#getBillingCodeActivityById) | **GET** /beta/billingCodeActivity/{billingCodeActivityId} | Get a billingCodeActivity by id
*infoplus.BillingCodeActivityApi* | [**getBillingCodeActivityFiles**](docs/BillingCodeActivityApi.md#getBillingCodeActivityFiles) | **GET** /beta/billingCodeActivity/{billingCodeActivityId}/file | Get the files for a billingCodeActivity.
*infoplus.BillingCodeActivityApi* | [**getBillingCodeActivityTags**](docs/BillingCodeActivityApi.md#getBillingCodeActivityTags) | **GET** /beta/billingCodeActivity/{billingCodeActivityId}/tag | Get the tags for a billingCodeActivity.
*infoplus.BillingCodeActivityApi* | [**getDuplicateBillingCodeActivityById**](docs/BillingCodeActivityApi.md#getDuplicateBillingCodeActivityById) | **GET** /beta/billingCodeActivity/duplicate/{billingCodeActivityId} | Get a duplicated a billingCodeActivity by id
*infoplus.BillingCodeActivityApi* | [**updateBillingCodeActivity**](docs/BillingCodeActivityApi.md#updateBillingCodeActivity) | **PUT** /beta/billingCodeActivity | Update a billingCodeActivity
*infoplus.BillingCodeTypeApi* | [**addBillingCodeType**](docs/BillingCodeTypeApi.md#addBillingCodeType) | **POST** /beta/billingCodeType | Create a billingCodeType
*infoplus.BillingCodeTypeApi* | [**addBillingCodeTypeAudit**](docs/BillingCodeTypeApi.md#addBillingCodeTypeAudit) | **PUT** /beta/billingCodeType/{billingCodeTypeId}/audit/{billingCodeTypeAudit} | Add new audit for a billingCodeType
*infoplus.BillingCodeTypeApi* | [**addBillingCodeTypeFile**](docs/BillingCodeTypeApi.md#addBillingCodeTypeFile) | **POST** /beta/billingCodeType/{billingCodeTypeId}/file/{fileName} | Attach a file to a billingCodeType
*infoplus.BillingCodeTypeApi* | [**addBillingCodeTypeFileByURL**](docs/BillingCodeTypeApi.md#addBillingCodeTypeFileByURL) | **POST** /beta/billingCodeType/{billingCodeTypeId}/file | Attach a file to a billingCodeType by URL.
*infoplus.BillingCodeTypeApi* | [**addBillingCodeTypeTag**](docs/BillingCodeTypeApi.md#addBillingCodeTypeTag) | **PUT** /beta/billingCodeType/{billingCodeTypeId}/tag/{billingCodeTypeTag} | Add new tags for a billingCodeType.
*infoplus.BillingCodeTypeApi* | [**deleteBillingCodeType**](docs/BillingCodeTypeApi.md#deleteBillingCodeType) | **DELETE** /beta/billingCodeType/{billingCodeTypeId} | Delete a billingCodeType
*infoplus.BillingCodeTypeApi* | [**deleteBillingCodeTypeFile**](docs/BillingCodeTypeApi.md#deleteBillingCodeTypeFile) | **DELETE** /beta/billingCodeType/{billingCodeTypeId}/file/{fileId} | Delete a file for a billingCodeType.
*infoplus.BillingCodeTypeApi* | [**deleteBillingCodeTypeTag**](docs/BillingCodeTypeApi.md#deleteBillingCodeTypeTag) | **DELETE** /beta/billingCodeType/{billingCodeTypeId}/tag/{billingCodeTypeTag} | Delete a tag for a billingCodeType.
*infoplus.BillingCodeTypeApi* | [**getBillingCodeTypeByFilter**](docs/BillingCodeTypeApi.md#getBillingCodeTypeByFilter) | **GET** /beta/billingCodeType/search | Search billingCodeTypes by filter
*infoplus.BillingCodeTypeApi* | [**getBillingCodeTypeById**](docs/BillingCodeTypeApi.md#getBillingCodeTypeById) | **GET** /beta/billingCodeType/{billingCodeTypeId} | Get a billingCodeType by id
*infoplus.BillingCodeTypeApi* | [**getBillingCodeTypeFiles**](docs/BillingCodeTypeApi.md#getBillingCodeTypeFiles) | **GET** /beta/billingCodeType/{billingCodeTypeId}/file | Get the files for a billingCodeType.
*infoplus.BillingCodeTypeApi* | [**getBillingCodeTypeTags**](docs/BillingCodeTypeApi.md#getBillingCodeTypeTags) | **GET** /beta/billingCodeType/{billingCodeTypeId}/tag | Get the tags for a billingCodeType.
*infoplus.BillingCodeTypeApi* | [**getDuplicateBillingCodeTypeById**](docs/BillingCodeTypeApi.md#getDuplicateBillingCodeTypeById) | **GET** /beta/billingCodeType/duplicate/{billingCodeTypeId} | Get a duplicated a billingCodeType by id
*infoplus.BillingCodeTypeApi* | [**updateBillingCodeType**](docs/BillingCodeTypeApi.md#updateBillingCodeType) | **PUT** /beta/billingCodeType | Update a billingCodeType
*infoplus.BillingCodeTypeApi* | [**updateBillingCodeTypeCustomFields**](docs/BillingCodeTypeApi.md#updateBillingCodeTypeCustomFields) | **PUT** /beta/billingCodeType/customFields | Update a billingCodeType custom fields
*infoplus.BuildingApi* | [**addBuilding**](docs/BuildingApi.md#addBuilding) | **POST** /beta/building | Create a building
*infoplus.BuildingApi* | [**addBuildingAudit**](docs/BuildingApi.md#addBuildingAudit) | **PUT** /beta/building/{buildingId}/audit/{buildingAudit} | Add new audit for a building
*infoplus.BuildingApi* | [**addBuildingFile**](docs/BuildingApi.md#addBuildingFile) | **POST** /beta/building/{buildingId}/file/{fileName} | Attach a file to a building
*infoplus.BuildingApi* | [**addBuildingFileByURL**](docs/BuildingApi.md#addBuildingFileByURL) | **POST** /beta/building/{buildingId}/file | Attach a file to a building by URL.
*infoplus.BuildingApi* | [**addBuildingTag**](docs/BuildingApi.md#addBuildingTag) | **PUT** /beta/building/{buildingId}/tag/{buildingTag} | Add new tags for a building.
*infoplus.BuildingApi* | [**deleteBuilding**](docs/BuildingApi.md#deleteBuilding) | **DELETE** /beta/building/{buildingId} | Delete a building
*infoplus.BuildingApi* | [**deleteBuildingFile**](docs/BuildingApi.md#deleteBuildingFile) | **DELETE** /beta/building/{buildingId}/file/{fileId} | Delete a file for a building.
*infoplus.BuildingApi* | [**deleteBuildingTag**](docs/BuildingApi.md#deleteBuildingTag) | **DELETE** /beta/building/{buildingId}/tag/{buildingTag} | Delete a tag for a building.
*infoplus.BuildingApi* | [**getBuildingByFilter**](docs/BuildingApi.md#getBuildingByFilter) | **GET** /beta/building/search | Search buildings by filter
*infoplus.BuildingApi* | [**getBuildingById**](docs/BuildingApi.md#getBuildingById) | **GET** /beta/building/{buildingId} | Get a building by id
*infoplus.BuildingApi* | [**getBuildingFiles**](docs/BuildingApi.md#getBuildingFiles) | **GET** /beta/building/{buildingId}/file | Get the files for a building.
*infoplus.BuildingApi* | [**getBuildingTags**](docs/BuildingApi.md#getBuildingTags) | **GET** /beta/building/{buildingId}/tag | Get the tags for a building.
*infoplus.BuildingApi* | [**getDuplicateBuildingById**](docs/BuildingApi.md#getDuplicateBuildingById) | **GET** /beta/building/duplicate/{buildingId} | Get a duplicated a building by id
*infoplus.BuildingApi* | [**updateBuilding**](docs/BuildingApi.md#updateBuilding) | **PUT** /beta/building | Update a building
*infoplus.BuildingApi* | [**updateBuildingCustomFields**](docs/BuildingApi.md#updateBuildingCustomFields) | **PUT** /beta/building/customFields | Update a building custom fields
*infoplus.BusinessTransactionApi* | [**addBusinessTransaction**](docs/BusinessTransactionApi.md#addBusinessTransaction) | **POST** /beta/businessTransaction | Create a businessTransaction
*infoplus.BusinessTransactionApi* | [**addBusinessTransactionAudit**](docs/BusinessTransactionApi.md#addBusinessTransactionAudit) | **PUT** /beta/businessTransaction/{businessTransactionId}/audit/{businessTransactionAudit} | Add new audit for a businessTransaction
*infoplus.BusinessTransactionApi* | [**addBusinessTransactionFile**](docs/BusinessTransactionApi.md#addBusinessTransactionFile) | **POST** /beta/businessTransaction/{businessTransactionId}/file/{fileName} | Attach a file to a businessTransaction
*infoplus.BusinessTransactionApi* | [**addBusinessTransactionFileByURL**](docs/BusinessTransactionApi.md#addBusinessTransactionFileByURL) | **POST** /beta/businessTransaction/{businessTransactionId}/file | Attach a file to a businessTransaction by URL.
*infoplus.BusinessTransactionApi* | [**addBusinessTransactionTag**](docs/BusinessTransactionApi.md#addBusinessTransactionTag) | **PUT** /beta/businessTransaction/{businessTransactionId}/tag/{businessTransactionTag} | Add new tags for a businessTransaction.
*infoplus.BusinessTransactionApi* | [**deleteBusinessTransactionFile**](docs/BusinessTransactionApi.md#deleteBusinessTransactionFile) | **DELETE** /beta/businessTransaction/{businessTransactionId}/file/{fileId} | Delete a file for a businessTransaction.
*infoplus.BusinessTransactionApi* | [**deleteBusinessTransactionTag**](docs/BusinessTransactionApi.md#deleteBusinessTransactionTag) | **DELETE** /beta/businessTransaction/{businessTransactionId}/tag/{businessTransactionTag} | Delete a tag for a businessTransaction.
*infoplus.BusinessTransactionApi* | [**getBusinessTransactionByFilter**](docs/BusinessTransactionApi.md#getBusinessTransactionByFilter) | **GET** /beta/businessTransaction/search | Search businessTransactions by filter
*infoplus.BusinessTransactionApi* | [**getBusinessTransactionById**](docs/BusinessTransactionApi.md#getBusinessTransactionById) | **GET** /beta/businessTransaction/{businessTransactionId} | Get a businessTransaction by id
*infoplus.BusinessTransactionApi* | [**getBusinessTransactionFiles**](docs/BusinessTransactionApi.md#getBusinessTransactionFiles) | **GET** /beta/businessTransaction/{businessTransactionId}/file | Get the files for a businessTransaction.
*infoplus.BusinessTransactionApi* | [**getBusinessTransactionTags**](docs/BusinessTransactionApi.md#getBusinessTransactionTags) | **GET** /beta/businessTransaction/{businessTransactionId}/tag | Get the tags for a businessTransaction.
*infoplus.BusinessTransactionApi* | [**getDuplicateBusinessTransactionById**](docs/BusinessTransactionApi.md#getDuplicateBusinessTransactionById) | **GET** /beta/businessTransaction/duplicate/{businessTransactionId} | Get a duplicated a businessTransaction by id
*infoplus.BusinessTransactionApi* | [**updateBusinessTransaction**](docs/BusinessTransactionApi.md#updateBusinessTransaction) | **PUT** /beta/businessTransaction | Update a businessTransaction
*infoplus.BusinessTransactionApi* | [**updateBusinessTransactionCustomFields**](docs/BusinessTransactionApi.md#updateBusinessTransactionCustomFields) | **PUT** /beta/businessTransaction/customFields | Update a businessTransaction custom fields
*infoplus.CarrierApi* | [**getCarrierById**](docs/CarrierApi.md#getCarrierById) | **GET** /beta/carrier/{carrierId} | Get a carrier by id
*infoplus.CarrierApi* | [**getCarrierBySearchText**](docs/CarrierApi.md#getCarrierBySearchText) | **GET** /beta/carrier/search | Search carriers
*infoplus.CarrierServiceApi* | [**getCarrierServiceById**](docs/CarrierServiceApi.md#getCarrierServiceById) | **GET** /beta/carrierService/{carrierServiceId} | Get a carrierService by id
*infoplus.CarrierServiceApi* | [**getCarrierServiceBySearchText**](docs/CarrierServiceApi.md#getCarrierServiceBySearchText) | **GET** /beta/carrierService/search | Search carrierServices
*infoplus.CartApi* | [**addCart**](docs/CartApi.md#addCart) | **POST** /beta/cart | Create a cart
*infoplus.CartApi* | [**addCartAudit**](docs/CartApi.md#addCartAudit) | **PUT** /beta/cart/{cartId}/audit/{cartAudit} | Add new audit for a cart
*infoplus.CartApi* | [**addCartFile**](docs/CartApi.md#addCartFile) | **POST** /beta/cart/{cartId}/file/{fileName} | Attach a file to a cart
*infoplus.CartApi* | [**addCartFileByURL**](docs/CartApi.md#addCartFileByURL) | **POST** /beta/cart/{cartId}/file | Attach a file to a cart by URL.
*infoplus.CartApi* | [**addCartTag**](docs/CartApi.md#addCartTag) | **PUT** /beta/cart/{cartId}/tag/{cartTag} | Add new tags for a cart.
*infoplus.CartApi* | [**deleteCart**](docs/CartApi.md#deleteCart) | **DELETE** /beta/cart/{cartId} | Delete a cart
*infoplus.CartApi* | [**deleteCartFile**](docs/CartApi.md#deleteCartFile) | **DELETE** /beta/cart/{cartId}/file/{fileId} | Delete a file for a cart.
*infoplus.CartApi* | [**deleteCartTag**](docs/CartApi.md#deleteCartTag) | **DELETE** /beta/cart/{cartId}/tag/{cartTag} | Delete a tag for a cart.
*infoplus.CartApi* | [**getCartByFilter**](docs/CartApi.md#getCartByFilter) | **GET** /beta/cart/search | Search carts by filter
*infoplus.CartApi* | [**getCartById**](docs/CartApi.md#getCartById) | **GET** /beta/cart/{cartId} | Get a cart by id
*infoplus.CartApi* | [**getCartFiles**](docs/CartApi.md#getCartFiles) | **GET** /beta/cart/{cartId}/file | Get the files for a cart.
*infoplus.CartApi* | [**getCartTags**](docs/CartApi.md#getCartTags) | **GET** /beta/cart/{cartId}/tag | Get the tags for a cart.
*infoplus.CartApi* | [**getDuplicateCartById**](docs/CartApi.md#getDuplicateCartById) | **GET** /beta/cart/duplicate/{cartId} | Get a duplicated a cart by id
*infoplus.CartApi* | [**updateCart**](docs/CartApi.md#updateCart) | **PUT** /beta/cart | Update a cart
*infoplus.CartLocationApi* | [**addCartLocationAudit**](docs/CartLocationApi.md#addCartLocationAudit) | **PUT** /beta/cartLocation/{cartLocationId}/audit/{cartLocationAudit} | Add new audit for a cartLocation
*infoplus.CartLocationApi* | [**addCartLocationFile**](docs/CartLocationApi.md#addCartLocationFile) | **POST** /beta/cartLocation/{cartLocationId}/file/{fileName} | Attach a file to a cartLocation
*infoplus.CartLocationApi* | [**addCartLocationFileByURL**](docs/CartLocationApi.md#addCartLocationFileByURL) | **POST** /beta/cartLocation/{cartLocationId}/file | Attach a file to a cartLocation by URL.
*infoplus.CartLocationApi* | [**addCartLocationTag**](docs/CartLocationApi.md#addCartLocationTag) | **PUT** /beta/cartLocation/{cartLocationId}/tag/{cartLocationTag} | Add new tags for a cartLocation.
*infoplus.CartLocationApi* | [**deleteCartLocationFile**](docs/CartLocationApi.md#deleteCartLocationFile) | **DELETE** /beta/cartLocation/{cartLocationId}/file/{fileId} | Delete a file for a cartLocation.
*infoplus.CartLocationApi* | [**deleteCartLocationTag**](docs/CartLocationApi.md#deleteCartLocationTag) | **DELETE** /beta/cartLocation/{cartLocationId}/tag/{cartLocationTag} | Delete a tag for a cartLocation.
*infoplus.CartLocationApi* | [**getCartLocationByFilter**](docs/CartLocationApi.md#getCartLocationByFilter) | **GET** /beta/cartLocation/search | Search cartLocations by filter
*infoplus.CartLocationApi* | [**getCartLocationById**](docs/CartLocationApi.md#getCartLocationById) | **GET** /beta/cartLocation/{cartLocationId} | Get a cartLocation by id
*infoplus.CartLocationApi* | [**getCartLocationFiles**](docs/CartLocationApi.md#getCartLocationFiles) | **GET** /beta/cartLocation/{cartLocationId}/file | Get the files for a cartLocation.
*infoplus.CartLocationApi* | [**getCartLocationTags**](docs/CartLocationApi.md#getCartLocationTags) | **GET** /beta/cartLocation/{cartLocationId}/tag | Get the tags for a cartLocation.
*infoplus.CartLocationApi* | [**getDuplicateCartLocationById**](docs/CartLocationApi.md#getDuplicateCartLocationById) | **GET** /beta/cartLocation/duplicate/{cartLocationId} | Get a duplicated a cartLocation by id
*infoplus.CartonApi* | [**addCarton**](docs/CartonApi.md#addCarton) | **POST** /beta/carton | Create a carton
*infoplus.CartonApi* | [**addCartonAudit**](docs/CartonApi.md#addCartonAudit) | **PUT** /beta/carton/{cartonId}/audit/{cartonAudit} | Add new audit for a carton
*infoplus.CartonApi* | [**addCartonFile**](docs/CartonApi.md#addCartonFile) | **POST** /beta/carton/{cartonId}/file/{fileName} | Attach a file to a carton
*infoplus.CartonApi* | [**addCartonFileByURL**](docs/CartonApi.md#addCartonFileByURL) | **POST** /beta/carton/{cartonId}/file | Attach a file to a carton by URL.
*infoplus.CartonApi* | [**addCartonTag**](docs/CartonApi.md#addCartonTag) | **PUT** /beta/carton/{cartonId}/tag/{cartonTag} | Add new tags for a carton.
*infoplus.CartonApi* | [**deleteCarton**](docs/CartonApi.md#deleteCarton) | **DELETE** /beta/carton/{cartonId} | Delete a carton
*infoplus.CartonApi* | [**deleteCartonFile**](docs/CartonApi.md#deleteCartonFile) | **DELETE** /beta/carton/{cartonId}/file/{fileId} | Delete a file for a carton.
*infoplus.CartonApi* | [**deleteCartonTag**](docs/CartonApi.md#deleteCartonTag) | **DELETE** /beta/carton/{cartonId}/tag/{cartonTag} | Delete a tag for a carton.
*infoplus.CartonApi* | [**getCartonByFilter**](docs/CartonApi.md#getCartonByFilter) | **GET** /beta/carton/search | Search cartons by filter
*infoplus.CartonApi* | [**getCartonById**](docs/CartonApi.md#getCartonById) | **GET** /beta/carton/{cartonId} | Get a carton by id
*infoplus.CartonApi* | [**getCartonFiles**](docs/CartonApi.md#getCartonFiles) | **GET** /beta/carton/{cartonId}/file | Get the files for a carton.
*infoplus.CartonApi* | [**getCartonTags**](docs/CartonApi.md#getCartonTags) | **GET** /beta/carton/{cartonId}/tag | Get the tags for a carton.
*infoplus.CartonApi* | [**getDuplicateCartonById**](docs/CartonApi.md#getDuplicateCartonById) | **GET** /beta/carton/duplicate/{cartonId} | Get a duplicated a carton by id
*infoplus.CartonApi* | [**updateCarton**](docs/CartonApi.md#updateCarton) | **PUT** /beta/carton | Update a carton
*infoplus.CartonApi* | [**updateCartonCustomFields**](docs/CartonApi.md#updateCartonCustomFields) | **PUT** /beta/carton/customFields | Update a carton custom fields
*infoplus.CartonActivityApi* | [**addCartonActivity**](docs/CartonActivityApi.md#addCartonActivity) | **POST** /beta/cartonActivity | Create a cartonActivity
*infoplus.CartonActivityApi* | [**addCartonActivityAudit**](docs/CartonActivityApi.md#addCartonActivityAudit) | **PUT** /beta/cartonActivity/{cartonActivityId}/audit/{cartonActivityAudit} | Add new audit for a cartonActivity
*infoplus.CartonActivityApi* | [**addCartonActivityFile**](docs/CartonActivityApi.md#addCartonActivityFile) | **POST** /beta/cartonActivity/{cartonActivityId}/file/{fileName} | Attach a file to a cartonActivity
*infoplus.CartonActivityApi* | [**addCartonActivityFileByURL**](docs/CartonActivityApi.md#addCartonActivityFileByURL) | **POST** /beta/cartonActivity/{cartonActivityId}/file | Attach a file to a cartonActivity by URL.
*infoplus.CartonActivityApi* | [**addCartonActivityTag**](docs/CartonActivityApi.md#addCartonActivityTag) | **PUT** /beta/cartonActivity/{cartonActivityId}/tag/{cartonActivityTag} | Add new tags for a cartonActivity.
*infoplus.CartonActivityApi* | [**deleteCartonActivity**](docs/CartonActivityApi.md#deleteCartonActivity) | **DELETE** /beta/cartonActivity/{cartonActivityId} | Delete a cartonActivity
*infoplus.CartonActivityApi* | [**deleteCartonActivityFile**](docs/CartonActivityApi.md#deleteCartonActivityFile) | **DELETE** /beta/cartonActivity/{cartonActivityId}/file/{fileId} | Delete a file for a cartonActivity.
*infoplus.CartonActivityApi* | [**deleteCartonActivityTag**](docs/CartonActivityApi.md#deleteCartonActivityTag) | **DELETE** /beta/cartonActivity/{cartonActivityId}/tag/{cartonActivityTag} | Delete a tag for a cartonActivity.
*infoplus.CartonActivityApi* | [**getCartonActivityByFilter**](docs/CartonActivityApi.md#getCartonActivityByFilter) | **GET** /beta/cartonActivity/search | Search cartonActivitys by filter
*infoplus.CartonActivityApi* | [**getCartonActivityById**](docs/CartonActivityApi.md#getCartonActivityById) | **GET** /beta/cartonActivity/{cartonActivityId} | Get a cartonActivity by id
*infoplus.CartonActivityApi* | [**getCartonActivityFiles**](docs/CartonActivityApi.md#getCartonActivityFiles) | **GET** /beta/cartonActivity/{cartonActivityId}/file | Get the files for a cartonActivity.
*infoplus.CartonActivityApi* | [**getCartonActivityTags**](docs/CartonActivityApi.md#getCartonActivityTags) | **GET** /beta/cartonActivity/{cartonActivityId}/tag | Get the tags for a cartonActivity.
*infoplus.CartonActivityApi* | [**getDuplicateCartonActivityById**](docs/CartonActivityApi.md#getDuplicateCartonActivityById) | **GET** /beta/cartonActivity/duplicate/{cartonActivityId} | Get a duplicated a cartonActivity by id
*infoplus.CartonActivityApi* | [**updateCartonActivity**](docs/CartonActivityApi.md#updateCartonActivity) | **PUT** /beta/cartonActivity | Update a cartonActivity
*infoplus.CartonContentApi* | [**addCartonContent**](docs/CartonContentApi.md#addCartonContent) | **POST** /beta/cartonContent | Create a cartonContent
*infoplus.CartonContentApi* | [**addCartonContentAudit**](docs/CartonContentApi.md#addCartonContentAudit) | **PUT** /beta/cartonContent/{cartonContentId}/audit/{cartonContentAudit} | Add new audit for a cartonContent
*infoplus.CartonContentApi* | [**addCartonContentFile**](docs/CartonContentApi.md#addCartonContentFile) | **POST** /beta/cartonContent/{cartonContentId}/file/{fileName} | Attach a file to a cartonContent
*infoplus.CartonContentApi* | [**addCartonContentFileByURL**](docs/CartonContentApi.md#addCartonContentFileByURL) | **POST** /beta/cartonContent/{cartonContentId}/file | Attach a file to a cartonContent by URL.
*infoplus.CartonContentApi* | [**addCartonContentTag**](docs/CartonContentApi.md#addCartonContentTag) | **PUT** /beta/cartonContent/{cartonContentId}/tag/{cartonContentTag} | Add new tags for a cartonContent.
*infoplus.CartonContentApi* | [**deleteCartonContent**](docs/CartonContentApi.md#deleteCartonContent) | **DELETE** /beta/cartonContent/{cartonContentId} | Delete a cartonContent
*infoplus.CartonContentApi* | [**deleteCartonContentFile**](docs/CartonContentApi.md#deleteCartonContentFile) | **DELETE** /beta/cartonContent/{cartonContentId}/file/{fileId} | Delete a file for a cartonContent.
*infoplus.CartonContentApi* | [**deleteCartonContentTag**](docs/CartonContentApi.md#deleteCartonContentTag) | **DELETE** /beta/cartonContent/{cartonContentId}/tag/{cartonContentTag} | Delete a tag for a cartonContent.
*infoplus.CartonContentApi* | [**getCartonContentByFilter**](docs/CartonContentApi.md#getCartonContentByFilter) | **GET** /beta/cartonContent/search | Search cartonContents by filter
*infoplus.CartonContentApi* | [**getCartonContentById**](docs/CartonContentApi.md#getCartonContentById) | **GET** /beta/cartonContent/{cartonContentId} | Get a cartonContent by id
*infoplus.CartonContentApi* | [**getCartonContentFiles**](docs/CartonContentApi.md#getCartonContentFiles) | **GET** /beta/cartonContent/{cartonContentId}/file | Get the files for a cartonContent.
*infoplus.CartonContentApi* | [**getCartonContentTags**](docs/CartonContentApi.md#getCartonContentTags) | **GET** /beta/cartonContent/{cartonContentId}/tag | Get the tags for a cartonContent.
*infoplus.CartonContentApi* | [**getDuplicateCartonContentById**](docs/CartonContentApi.md#getDuplicateCartonContentById) | **GET** /beta/cartonContent/duplicate/{cartonContentId} | Get a duplicated a cartonContent by id
*infoplus.CartonContentApi* | [**updateCartonContent**](docs/CartonContentApi.md#updateCartonContent) | **PUT** /beta/cartonContent | Update a cartonContent
*infoplus.CartonContentApi* | [**updateCartonContentCustomFields**](docs/CartonContentApi.md#updateCartonContentCustomFields) | **PUT** /beta/cartonContent/customFields | Update a cartonContent custom fields
*infoplus.CartonTypeApi* | [**addCartonType**](docs/CartonTypeApi.md#addCartonType) | **POST** /beta/cartonType | Create a cartonType
*infoplus.CartonTypeApi* | [**addCartonTypeAudit**](docs/CartonTypeApi.md#addCartonTypeAudit) | **PUT** /beta/cartonType/{cartonTypeId}/audit/{cartonTypeAudit} | Add new audit for a cartonType
*infoplus.CartonTypeApi* | [**addCartonTypeFile**](docs/CartonTypeApi.md#addCartonTypeFile) | **POST** /beta/cartonType/{cartonTypeId}/file/{fileName} | Attach a file to a cartonType
*infoplus.CartonTypeApi* | [**addCartonTypeFileByURL**](docs/CartonTypeApi.md#addCartonTypeFileByURL) | **POST** /beta/cartonType/{cartonTypeId}/file | Attach a file to a cartonType by URL.
*infoplus.CartonTypeApi* | [**addCartonTypeTag**](docs/CartonTypeApi.md#addCartonTypeTag) | **PUT** /beta/cartonType/{cartonTypeId}/tag/{cartonTypeTag} | Add new tags for a cartonType.
*infoplus.CartonTypeApi* | [**deleteCartonType**](docs/CartonTypeApi.md#deleteCartonType) | **DELETE** /beta/cartonType/{cartonTypeId} | Delete a cartonType
*infoplus.CartonTypeApi* | [**deleteCartonTypeFile**](docs/CartonTypeApi.md#deleteCartonTypeFile) | **DELETE** /beta/cartonType/{cartonTypeId}/file/{fileId} | Delete a file for a cartonType.
*infoplus.CartonTypeApi* | [**deleteCartonTypeTag**](docs/CartonTypeApi.md#deleteCartonTypeTag) | **DELETE** /beta/cartonType/{cartonTypeId}/tag/{cartonTypeTag} | Delete a tag for a cartonType.
*infoplus.CartonTypeApi* | [**getCartonTypeByFilter**](docs/CartonTypeApi.md#getCartonTypeByFilter) | **GET** /beta/cartonType/search | Search cartonTypes by filter
*infoplus.CartonTypeApi* | [**getCartonTypeById**](docs/CartonTypeApi.md#getCartonTypeById) | **GET** /beta/cartonType/{cartonTypeId} | Get a cartonType by id
*infoplus.CartonTypeApi* | [**getCartonTypeFiles**](docs/CartonTypeApi.md#getCartonTypeFiles) | **GET** /beta/cartonType/{cartonTypeId}/file | Get the files for a cartonType.
*infoplus.CartonTypeApi* | [**getCartonTypeTags**](docs/CartonTypeApi.md#getCartonTypeTags) | **GET** /beta/cartonType/{cartonTypeId}/tag | Get the tags for a cartonType.
*infoplus.CartonTypeApi* | [**getDuplicateCartonTypeById**](docs/CartonTypeApi.md#getDuplicateCartonTypeById) | **GET** /beta/cartonType/duplicate/{cartonTypeId} | Get a duplicated a cartonType by id
*infoplus.CartonTypeApi* | [**updateCartonType**](docs/CartonTypeApi.md#updateCartonType) | **PUT** /beta/cartonType | Update a cartonType
*infoplus.CartonTypeApi* | [**updateCartonTypeCustomFields**](docs/CartonTypeApi.md#updateCartonTypeCustomFields) | **PUT** /beta/cartonType/customFields | Update a cartonType custom fields
*infoplus.CustomFieldApi* | [**addCustomField**](docs/CustomFieldApi.md#addCustomField) | **POST** /beta/customField | Create a customField
*infoplus.CustomFieldApi* | [**addCustomFieldAudit**](docs/CustomFieldApi.md#addCustomFieldAudit) | **PUT** /beta/customField/{customFieldId}/audit/{customFieldAudit} | Add new audit for a customField
*infoplus.CustomFieldApi* | [**addCustomFieldFile**](docs/CustomFieldApi.md#addCustomFieldFile) | **POST** /beta/customField/{customFieldId}/file/{fileName} | Attach a file to a customField
*infoplus.CustomFieldApi* | [**addCustomFieldFileByURL**](docs/CustomFieldApi.md#addCustomFieldFileByURL) | **POST** /beta/customField/{customFieldId}/file | Attach a file to a customField by URL.
*infoplus.CustomFieldApi* | [**addCustomFieldTag**](docs/CustomFieldApi.md#addCustomFieldTag) | **PUT** /beta/customField/{customFieldId}/tag/{customFieldTag} | Add new tags for a customField.
*infoplus.CustomFieldApi* | [**deleteCustomFieldFile**](docs/CustomFieldApi.md#deleteCustomFieldFile) | **DELETE** /beta/customField/{customFieldId}/file/{fileId} | Delete a file for a customField.
*infoplus.CustomFieldApi* | [**deleteCustomFieldTag**](docs/CustomFieldApi.md#deleteCustomFieldTag) | **DELETE** /beta/customField/{customFieldId}/tag/{customFieldTag} | Delete a tag for a customField.
*infoplus.CustomFieldApi* | [**getCustomFieldByFilter**](docs/CustomFieldApi.md#getCustomFieldByFilter) | **GET** /beta/customField/search | Search customFields by filter
*infoplus.CustomFieldApi* | [**getCustomFieldById**](docs/CustomFieldApi.md#getCustomFieldById) | **GET** /beta/customField/{customFieldId} | Get a customField by id
*infoplus.CustomFieldApi* | [**getCustomFieldFiles**](docs/CustomFieldApi.md#getCustomFieldFiles) | **GET** /beta/customField/{customFieldId}/file | Get the files for a customField.
*infoplus.CustomFieldApi* | [**getCustomFieldTags**](docs/CustomFieldApi.md#getCustomFieldTags) | **GET** /beta/customField/{customFieldId}/tag | Get the tags for a customField.
*infoplus.CustomFieldApi* | [**getDuplicateCustomFieldById**](docs/CustomFieldApi.md#getDuplicateCustomFieldById) | **GET** /beta/customField/duplicate/{customFieldId} | Get a duplicated a customField by id
*infoplus.CustomFieldApi* | [**updateCustomField**](docs/CustomFieldApi.md#updateCustomField) | **PUT** /beta/customField | Update a customField
*infoplus.CustomerApi* | [**addCustomer**](docs/CustomerApi.md#addCustomer) | **POST** /beta/customer | Create a customer
*infoplus.CustomerApi* | [**addCustomerAudit**](docs/CustomerApi.md#addCustomerAudit) | **PUT** /beta/customer/{customerId}/audit/{customerAudit} | Add new audit for a customer
*infoplus.CustomerApi* | [**addCustomerFile**](docs/CustomerApi.md#addCustomerFile) | **POST** /beta/customer/{customerId}/file/{fileName} | Attach a file to a customer
*infoplus.CustomerApi* | [**addCustomerFileByURL**](docs/CustomerApi.md#addCustomerFileByURL) | **POST** /beta/customer/{customerId}/file | Attach a file to a customer by URL.
*infoplus.CustomerApi* | [**addCustomerTag**](docs/CustomerApi.md#addCustomerTag) | **PUT** /beta/customer/{customerId}/tag/{customerTag} | Add new tags for a customer.
*infoplus.CustomerApi* | [**deleteCustomer**](docs/CustomerApi.md#deleteCustomer) | **DELETE** /beta/customer/{customerId} | Delete a customer
*infoplus.CustomerApi* | [**deleteCustomerFile**](docs/CustomerApi.md#deleteCustomerFile) | **DELETE** /beta/customer/{customerId}/file/{fileId} | Delete a file for a customer.
*infoplus.CustomerApi* | [**deleteCustomerTag**](docs/CustomerApi.md#deleteCustomerTag) | **DELETE** /beta/customer/{customerId}/tag/{customerTag} | Delete a tag for a customer.
*infoplus.CustomerApi* | [**getByCustomerNo**](docs/CustomerApi.md#getByCustomerNo) | **GET** /beta/customer/getByCustomerNo | Get a customer by Customer No
*infoplus.CustomerApi* | [**getCustomerByFilter**](docs/CustomerApi.md#getCustomerByFilter) | **GET** /beta/customer/search | Search customers by filter
*infoplus.CustomerApi* | [**getCustomerById**](docs/CustomerApi.md#getCustomerById) | **GET** /beta/customer/{customerId} | Get a customer by id
*infoplus.CustomerApi* | [**getCustomerFiles**](docs/CustomerApi.md#getCustomerFiles) | **GET** /beta/customer/{customerId}/file | Get the files for a customer.
*infoplus.CustomerApi* | [**getCustomerTags**](docs/CustomerApi.md#getCustomerTags) | **GET** /beta/customer/{customerId}/tag | Get the tags for a customer.
*infoplus.CustomerApi* | [**getDuplicateCustomerById**](docs/CustomerApi.md#getDuplicateCustomerById) | **GET** /beta/customer/duplicate/{customerId} | Get a duplicated a customer by id
*infoplus.CustomerApi* | [**updateCustomer**](docs/CustomerApi.md#updateCustomer) | **PUT** /beta/customer | Update a customer
*infoplus.CustomerApi* | [**updateCustomerCustomFields**](docs/CustomerApi.md#updateCustomerCustomFields) | **PUT** /beta/customer/customFields | Update a customer custom fields
*infoplus.CustomerInvoiceTemplateApi* | [**addCustomerInvoiceTemplate**](docs/CustomerInvoiceTemplateApi.md#addCustomerInvoiceTemplate) | **POST** /beta/customerInvoiceTemplate | Create a customerInvoiceTemplate
*infoplus.CustomerInvoiceTemplateApi* | [**addCustomerInvoiceTemplateAudit**](docs/CustomerInvoiceTemplateApi.md#addCustomerInvoiceTemplateAudit) | **PUT** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/audit/{customerInvoiceTemplateAudit} | Add new audit for a customerInvoiceTemplate
*infoplus.CustomerInvoiceTemplateApi* | [**addCustomerInvoiceTemplateFile**](docs/CustomerInvoiceTemplateApi.md#addCustomerInvoiceTemplateFile) | **POST** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/file/{fileName} | Attach a file to a customerInvoiceTemplate
*infoplus.CustomerInvoiceTemplateApi* | [**addCustomerInvoiceTemplateFileByURL**](docs/CustomerInvoiceTemplateApi.md#addCustomerInvoiceTemplateFileByURL) | **POST** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/file | Attach a file to a customerInvoiceTemplate by URL.
*infoplus.CustomerInvoiceTemplateApi* | [**addCustomerInvoiceTemplateTag**](docs/CustomerInvoiceTemplateApi.md#addCustomerInvoiceTemplateTag) | **PUT** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag/{customerInvoiceTemplateTag} | Add new tags for a customerInvoiceTemplate.
*infoplus.CustomerInvoiceTemplateApi* | [**deleteCustomerInvoiceTemplate**](docs/CustomerInvoiceTemplateApi.md#deleteCustomerInvoiceTemplate) | **DELETE** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId} | Delete a customerInvoiceTemplate
*infoplus.CustomerInvoiceTemplateApi* | [**deleteCustomerInvoiceTemplateFile**](docs/CustomerInvoiceTemplateApi.md#deleteCustomerInvoiceTemplateFile) | **DELETE** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/file/{fileId} | Delete a file for a customerInvoiceTemplate.
*infoplus.CustomerInvoiceTemplateApi* | [**deleteCustomerInvoiceTemplateTag**](docs/CustomerInvoiceTemplateApi.md#deleteCustomerInvoiceTemplateTag) | **DELETE** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag/{customerInvoiceTemplateTag} | Delete a tag for a customerInvoiceTemplate.
*infoplus.CustomerInvoiceTemplateApi* | [**getCustomerInvoiceTemplateByFilter**](docs/CustomerInvoiceTemplateApi.md#getCustomerInvoiceTemplateByFilter) | **GET** /beta/customerInvoiceTemplate/search | Search customerInvoiceTemplates by filter
*infoplus.CustomerInvoiceTemplateApi* | [**getCustomerInvoiceTemplateById**](docs/CustomerInvoiceTemplateApi.md#getCustomerInvoiceTemplateById) | **GET** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId} | Get a customerInvoiceTemplate by id
*infoplus.CustomerInvoiceTemplateApi* | [**getCustomerInvoiceTemplateFiles**](docs/CustomerInvoiceTemplateApi.md#getCustomerInvoiceTemplateFiles) | **GET** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/file | Get the files for a customerInvoiceTemplate.
*infoplus.CustomerInvoiceTemplateApi* | [**getCustomerInvoiceTemplateTags**](docs/CustomerInvoiceTemplateApi.md#getCustomerInvoiceTemplateTags) | **GET** /beta/customerInvoiceTemplate/{customerInvoiceTemplateId}/tag | Get the tags for a customerInvoiceTemplate.
*infoplus.CustomerInvoiceTemplateApi* | [**getDuplicateCustomerInvoiceTemplateById**](docs/CustomerInvoiceTemplateApi.md#getDuplicateCustomerInvoiceTemplateById) | **GET** /beta/customerInvoiceTemplate/duplicate/{customerInvoiceTemplateId} | Get a duplicated a customerInvoiceTemplate by id
*infoplus.CustomerInvoiceTemplateApi* | [**updateCustomerInvoiceTemplate**](docs/CustomerInvoiceTemplateApi.md#updateCustomerInvoiceTemplate) | **PUT** /beta/customerInvoiceTemplate | Update a customerInvoiceTemplate
*infoplus.CustomerInvoiceTemplateLineApi* | [**addCustomerInvoiceTemplateLineAudit**](docs/CustomerInvoiceTemplateLineApi.md#addCustomerInvoiceTemplateLineAudit) | **PUT** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/audit/{customerInvoiceTemplateLineAudit} | Add new audit for a customerInvoiceTemplateLine
*infoplus.CustomerInvoiceTemplateLineApi* | [**addCustomerInvoiceTemplateLineFile**](docs/CustomerInvoiceTemplateLineApi.md#addCustomerInvoiceTemplateLineFile) | **POST** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/file/{fileName} | Attach a file to a customerInvoiceTemplateLine
*infoplus.CustomerInvoiceTemplateLineApi* | [**addCustomerInvoiceTemplateLineFileByURL**](docs/CustomerInvoiceTemplateLineApi.md#addCustomerInvoiceTemplateLineFileByURL) | **POST** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/file | Attach a file to a customerInvoiceTemplateLine by URL.
*infoplus.CustomerInvoiceTemplateLineApi* | [**addCustomerInvoiceTemplateLineTag**](docs/CustomerInvoiceTemplateLineApi.md#addCustomerInvoiceTemplateLineTag) | **PUT** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag/{customerInvoiceTemplateLineTag} | Add new tags for a customerInvoiceTemplateLine.
*infoplus.CustomerInvoiceTemplateLineApi* | [**deleteCustomerInvoiceTemplateLine**](docs/CustomerInvoiceTemplateLineApi.md#deleteCustomerInvoiceTemplateLine) | **DELETE** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId} | Delete a customerInvoiceTemplateLine
*infoplus.CustomerInvoiceTemplateLineApi* | [**deleteCustomerInvoiceTemplateLineFile**](docs/CustomerInvoiceTemplateLineApi.md#deleteCustomerInvoiceTemplateLineFile) | **DELETE** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/file/{fileId} | Delete a file for a customerInvoiceTemplateLine.
*infoplus.CustomerInvoiceTemplateLineApi* | [**deleteCustomerInvoiceTemplateLineTag**](docs/CustomerInvoiceTemplateLineApi.md#deleteCustomerInvoiceTemplateLineTag) | **DELETE** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag/{customerInvoiceTemplateLineTag} | Delete a tag for a customerInvoiceTemplateLine.
*infoplus.CustomerInvoiceTemplateLineApi* | [**getCustomerInvoiceTemplateLineByFilter**](docs/CustomerInvoiceTemplateLineApi.md#getCustomerInvoiceTemplateLineByFilter) | **GET** /beta/customerInvoiceTemplateLine/search | Search customerInvoiceTemplateLines by filter
*infoplus.CustomerInvoiceTemplateLineApi* | [**getCustomerInvoiceTemplateLineById**](docs/CustomerInvoiceTemplateLineApi.md#getCustomerInvoiceTemplateLineById) | **GET** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId} | Get a customerInvoiceTemplateLine by id
*infoplus.CustomerInvoiceTemplateLineApi* | [**getCustomerInvoiceTemplateLineFiles**](docs/CustomerInvoiceTemplateLineApi.md#getCustomerInvoiceTemplateLineFiles) | **GET** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/file | Get the files for a customerInvoiceTemplateLine.
*infoplus.CustomerInvoiceTemplateLineApi* | [**getCustomerInvoiceTemplateLineTags**](docs/CustomerInvoiceTemplateLineApi.md#getCustomerInvoiceTemplateLineTags) | **GET** /beta/customerInvoiceTemplateLine/{customerInvoiceTemplateLineId}/tag | Get the tags for a customerInvoiceTemplateLine.
*infoplus.CustomerInvoiceTemplateLineApi* | [**getDuplicateCustomerInvoiceTemplateLineById**](docs/CustomerInvoiceTemplateLineApi.md#getDuplicateCustomerInvoiceTemplateLineById) | **GET** /beta/customerInvoiceTemplateLine/duplicate/{customerInvoiceTemplateLineId} | Get a duplicated a customerInvoiceTemplateLine by id
*infoplus.CustomerInvoiceTemplateLineApi* | [**updateCustomerInvoiceTemplateLine**](docs/CustomerInvoiceTemplateLineApi.md#updateCustomerInvoiceTemplateLine) | **PUT** /beta/customerInvoiceTemplateLine | Update a customerInvoiceTemplateLine
*infoplus.EDIDocumentTypeApi* | [**getEDIDocumentTypeById**](docs/EDIDocumentTypeApi.md#getEDIDocumentTypeById) | **GET** /beta/eDIDocumentType/{eDIDocumentTypeId} | Get an eDIDocumentType by id
*infoplus.EDIDocumentTypeApi* | [**getEDIDocumentTypeBySearchText**](docs/EDIDocumentTypeApi.md#getEDIDocumentTypeBySearchText) | **GET** /beta/eDIDocumentType/search | Search eDIDocumentTypes
*infoplus.EdiDocumentApi* | [**addEdiDocument**](docs/EdiDocumentApi.md#addEdiDocument) | **POST** /beta/ediDocument | Create an ediDocument
*infoplus.EdiDocumentApi* | [**addEdiDocumentAudit**](docs/EdiDocumentApi.md#addEdiDocumentAudit) | **PUT** /beta/ediDocument/{ediDocumentId}/audit/{ediDocumentAudit} | Add new audit for an ediDocument
*infoplus.EdiDocumentApi* | [**addEdiDocumentFile**](docs/EdiDocumentApi.md#addEdiDocumentFile) | **POST** /beta/ediDocument/{ediDocumentId}/file/{fileName} | Attach a file to an ediDocument
*infoplus.EdiDocumentApi* | [**addEdiDocumentFileByURL**](docs/EdiDocumentApi.md#addEdiDocumentFileByURL) | **POST** /beta/ediDocument/{ediDocumentId}/file | Attach a file to an ediDocument by URL.
*infoplus.EdiDocumentApi* | [**addEdiDocumentTag**](docs/EdiDocumentApi.md#addEdiDocumentTag) | **PUT** /beta/ediDocument/{ediDocumentId}/tag/{ediDocumentTag} | Add new tags for an ediDocument.
*infoplus.EdiDocumentApi* | [**deleteEdiDocumentFile**](docs/EdiDocumentApi.md#deleteEdiDocumentFile) | **DELETE** /beta/ediDocument/{ediDocumentId}/file/{fileId} | Delete a file for an ediDocument.
*infoplus.EdiDocumentApi* | [**deleteEdiDocumentTag**](docs/EdiDocumentApi.md#deleteEdiDocumentTag) | **DELETE** /beta/ediDocument/{ediDocumentId}/tag/{ediDocumentTag} | Delete a tag for an ediDocument.
*infoplus.EdiDocumentApi* | [**getDuplicateEdiDocumentById**](docs/EdiDocumentApi.md#getDuplicateEdiDocumentById) | **GET** /beta/ediDocument/duplicate/{ediDocumentId} | Get a duplicated an ediDocument by id
*infoplus.EdiDocumentApi* | [**getEdiDocumentByFilter**](docs/EdiDocumentApi.md#getEdiDocumentByFilter) | **GET** /beta/ediDocument/search | Search ediDocuments by filter
*infoplus.EdiDocumentApi* | [**getEdiDocumentById**](docs/EdiDocumentApi.md#getEdiDocumentById) | **GET** /beta/ediDocument/{ediDocumentId} | Get an ediDocument by id
*infoplus.EdiDocumentApi* | [**getEdiDocumentFiles**](docs/EdiDocumentApi.md#getEdiDocumentFiles) | **GET** /beta/ediDocument/{ediDocumentId}/file | Get the files for an ediDocument.
*infoplus.EdiDocumentApi* | [**getEdiDocumentTags**](docs/EdiDocumentApi.md#getEdiDocumentTags) | **GET** /beta/ediDocument/{ediDocumentId}/tag | Get the tags for an ediDocument.
*infoplus.EmailTemplateApi* | [**addEmailTemplate**](docs/EmailTemplateApi.md#addEmailTemplate) | **POST** /beta/emailTemplate | Create an emailTemplate
*infoplus.EmailTemplateApi* | [**addEmailTemplateAudit**](docs/EmailTemplateApi.md#addEmailTemplateAudit) | **PUT** /beta/emailTemplate/{emailTemplateId}/audit/{emailTemplateAudit} | Add new audit for an emailTemplate
*infoplus.EmailTemplateApi* | [**addEmailTemplateFile**](docs/EmailTemplateApi.md#addEmailTemplateFile) | **POST** /beta/emailTemplate/{emailTemplateId}/file/{fileName} | Attach a file to an emailTemplate
*infoplus.EmailTemplateApi* | [**addEmailTemplateFileByURL**](docs/EmailTemplateApi.md#addEmailTemplateFileByURL) | **POST** /beta/emailTemplate/{emailTemplateId}/file | Attach a file to an emailTemplate by URL.
*infoplus.EmailTemplateApi* | [**addEmailTemplateTag**](docs/EmailTemplateApi.md#addEmailTemplateTag) | **PUT** /beta/emailTemplate/{emailTemplateId}/tag/{emailTemplateTag} | Add new tags for an emailTemplate.
*infoplus.EmailTemplateApi* | [**deleteEmailTemplate**](docs/EmailTemplateApi.md#deleteEmailTemplate) | **DELETE** /beta/emailTemplate/{emailTemplateId} | Delete an emailTemplate
*infoplus.EmailTemplateApi* | [**deleteEmailTemplateFile**](docs/EmailTemplateApi.md#deleteEmailTemplateFile) | **DELETE** /beta/emailTemplate/{emailTemplateId}/file/{fileId} | Delete a file for an emailTemplate.
*infoplus.EmailTemplateApi* | [**deleteEmailTemplateTag**](docs/EmailTemplateApi.md#deleteEmailTemplateTag) | **DELETE** /beta/emailTemplate/{emailTemplateId}/tag/{emailTemplateTag} | Delete a tag for an emailTemplate.
*infoplus.EmailTemplateApi* | [**getDuplicateEmailTemplateById**](docs/EmailTemplateApi.md#getDuplicateEmailTemplateById) | **GET** /beta/emailTemplate/duplicate/{emailTemplateId} | Get a duplicated an emailTemplate by id
*infoplus.EmailTemplateApi* | [**getEmailTemplateByFilter**](docs/EmailTemplateApi.md#getEmailTemplateByFilter) | **GET** /beta/emailTemplate/search | Search emailTemplates by filter
*infoplus.EmailTemplateApi* | [**getEmailTemplateById**](docs/EmailTemplateApi.md#getEmailTemplateById) | **GET** /beta/emailTemplate/{emailTemplateId} | Get an emailTemplate by id
*infoplus.EmailTemplateApi* | [**getEmailTemplateFiles**](docs/EmailTemplateApi.md#getEmailTemplateFiles) | **GET** /beta/emailTemplate/{emailTemplateId}/file | Get the files for an emailTemplate.
*infoplus.EmailTemplateApi* | [**getEmailTemplateTags**](docs/EmailTemplateApi.md#getEmailTemplateTags) | **GET** /beta/emailTemplate/{emailTemplateId}/tag | Get the tags for an emailTemplate.
*infoplus.EmailTemplateApi* | [**updateEmailTemplate**](docs/EmailTemplateApi.md#updateEmailTemplate) | **PUT** /beta/emailTemplate | Update an emailTemplate
*infoplus.EmailTemplateApi* | [**updateEmailTemplateCustomFields**](docs/EmailTemplateApi.md#updateEmailTemplateCustomFields) | **PUT** /beta/emailTemplate/customFields | Update an emailTemplate custom fields
*infoplus.ExternalShipmentApi* | [**addExternalShipment**](docs/ExternalShipmentApi.md#addExternalShipment) | **POST** /beta/externalShipment | Create an externalShipment
*infoplus.ExternalShipmentApi* | [**addExternalShipmentAudit**](docs/ExternalShipmentApi.md#addExternalShipmentAudit) | **PUT** /beta/externalShipment/{externalShipmentId}/audit/{externalShipmentAudit} | Add new audit for an externalShipment
*infoplus.ExternalShipmentApi* | [**addExternalShipmentFile**](docs/ExternalShipmentApi.md#addExternalShipmentFile) | **POST** /beta/externalShipment/{externalShipmentId}/file/{fileName} | Attach a file to an externalShipment
*infoplus.ExternalShipmentApi* | [**addExternalShipmentFileByURL**](docs/ExternalShipmentApi.md#addExternalShipmentFileByURL) | **POST** /beta/externalShipment/{externalShipmentId}/file | Attach a file to an externalShipment by URL.
*infoplus.ExternalShipmentApi* | [**addExternalShipmentTag**](docs/ExternalShipmentApi.md#addExternalShipmentTag) | **PUT** /beta/externalShipment/{externalShipmentId}/tag/{externalShipmentTag} | Add new tags for an externalShipment.
*infoplus.ExternalShipmentApi* | [**deleteExternalShipment**](docs/ExternalShipmentApi.md#deleteExternalShipment) | **DELETE** /beta/externalShipment/{externalShipmentId} | Delete an externalShipment
*infoplus.ExternalShipmentApi* | [**deleteExternalShipmentFile**](docs/ExternalShipmentApi.md#deleteExternalShipmentFile) | **DELETE** /beta/externalShipment/{externalShipmentId}/file/{fileId} | Delete a file for an externalShipment.
*infoplus.ExternalShipmentApi* | [**deleteExternalShipmentTag**](docs/ExternalShipmentApi.md#deleteExternalShipmentTag) | **DELETE** /beta/externalShipment/{externalShipmentId}/tag/{externalShipmentTag} | Delete a tag for an externalShipment.
*infoplus.ExternalShipmentApi* | [**getDuplicateExternalShipmentById**](docs/ExternalShipmentApi.md#getDuplicateExternalShipmentById) | **GET** /beta/externalShipment/duplicate/{externalShipmentId} | Get a duplicated an externalShipment by id
*infoplus.ExternalShipmentApi* | [**getExternalShipmentByFilter**](docs/ExternalShipmentApi.md#getExternalShipmentByFilter) | **GET** /beta/externalShipment/search | Search externalShipments by filter
*infoplus.ExternalShipmentApi* | [**getExternalShipmentById**](docs/ExternalShipmentApi.md#getExternalShipmentById) | **GET** /beta/externalShipment/{externalShipmentId} | Get an externalShipment by id
*infoplus.ExternalShipmentApi* | [**getExternalShipmentFiles**](docs/ExternalShipmentApi.md#getExternalShipmentFiles) | **GET** /beta/externalShipment/{externalShipmentId}/file | Get the files for an externalShipment.
*infoplus.ExternalShipmentApi* | [**getExternalShipmentTags**](docs/ExternalShipmentApi.md#getExternalShipmentTags) | **GET** /beta/externalShipment/{externalShipmentId}/tag | Get the tags for an externalShipment.
*infoplus.ExternalShipmentApi* | [**updateExternalShipment**](docs/ExternalShipmentApi.md#updateExternalShipment) | **PUT** /beta/externalShipment | Update an externalShipment
*infoplus.ExternalShipmentApi* | [**updateExternalShipmentCustomFields**](docs/ExternalShipmentApi.md#updateExternalShipmentCustomFields) | **PUT** /beta/externalShipment/customFields | Update an externalShipment custom fields
*infoplus.ExternalShippingSystemApi* | [**addExternalShippingSystem**](docs/ExternalShippingSystemApi.md#addExternalShippingSystem) | **POST** /beta/externalShippingSystem | Create an externalShippingSystem
*infoplus.ExternalShippingSystemApi* | [**addExternalShippingSystemAudit**](docs/ExternalShippingSystemApi.md#addExternalShippingSystemAudit) | **PUT** /beta/externalShippingSystem/{externalShippingSystemId}/audit/{externalShippingSystemAudit} | Add new audit for an externalShippingSystem
*infoplus.ExternalShippingSystemApi* | [**addExternalShippingSystemFile**](docs/ExternalShippingSystemApi.md#addExternalShippingSystemFile) | **POST** /beta/externalShippingSystem/{externalShippingSystemId}/file/{fileName} | Attach a file to an externalShippingSystem
*infoplus.ExternalShippingSystemApi* | [**addExternalShippingSystemFileByURL**](docs/ExternalShippingSystemApi.md#addExternalShippingSystemFileByURL) | **POST** /beta/externalShippingSystem/{externalShippingSystemId}/file | Attach a file to an externalShippingSystem by URL.
*infoplus.ExternalShippingSystemApi* | [**addExternalShippingSystemTag**](docs/ExternalShippingSystemApi.md#addExternalShippingSystemTag) | **PUT** /beta/externalShippingSystem/{externalShippingSystemId}/tag/{externalShippingSystemTag} | Add new tags for an externalShippingSystem.
*infoplus.ExternalShippingSystemApi* | [**deleteExternalShippingSystem**](docs/ExternalShippingSystemApi.md#deleteExternalShippingSystem) | **DELETE** /beta/externalShippingSystem/{externalShippingSystemId} | Delete an externalShippingSystem
*infoplus.ExternalShippingSystemApi* | [**deleteExternalShippingSystemFile**](docs/ExternalShippingSystemApi.md#deleteExternalShippingSystemFile) | **DELETE** /beta/externalShippingSystem/{externalShippingSystemId}/file/{fileId} | Delete a file for an externalShippingSystem.
*infoplus.ExternalShippingSystemApi* | [**deleteExternalShippingSystemTag**](docs/ExternalShippingSystemApi.md#deleteExternalShippingSystemTag) | **DELETE** /beta/externalShippingSystem/{externalShippingSystemId}/tag/{externalShippingSystemTag} | Delete a tag for an externalShippingSystem.
*infoplus.ExternalShippingSystemApi* | [**getDuplicateExternalShippingSystemById**](docs/ExternalShippingSystemApi.md#getDuplicateExternalShippingSystemById) | **GET** /beta/externalShippingSystem/duplicate/{externalShippingSystemId} | Get a duplicated an externalShippingSystem by id
*infoplus.ExternalShippingSystemApi* | [**getExternalShippingSystemByFilter**](docs/ExternalShippingSystemApi.md#getExternalShippingSystemByFilter) | **GET** /beta/externalShippingSystem/search | Search externalShippingSystems by filter
*infoplus.ExternalShippingSystemApi* | [**getExternalShippingSystemById**](docs/ExternalShippingSystemApi.md#getExternalShippingSystemById) | **GET** /beta/externalShippingSystem/{externalShippingSystemId} | Get an externalShippingSystem by id
*infoplus.ExternalShippingSystemApi* | [**getExternalShippingSystemFiles**](docs/ExternalShippingSystemApi.md#getExternalShippingSystemFiles) | **GET** /beta/externalShippingSystem/{externalShippingSystemId}/file | Get the files for an externalShippingSystem.
*infoplus.ExternalShippingSystemApi* | [**getExternalShippingSystemTags**](docs/ExternalShippingSystemApi.md#getExternalShippingSystemTags) | **GET** /beta/externalShippingSystem/{externalShippingSystemId}/tag | Get the tags for an externalShippingSystem.
*infoplus.ExternalShippingSystemApi* | [**updateExternalShippingSystem**](docs/ExternalShippingSystemApi.md#updateExternalShippingSystem) | **PUT** /beta/externalShippingSystem | Update an externalShippingSystem
*infoplus.ExternalShippingSystemApi* | [**updateExternalShippingSystemCustomFields**](docs/ExternalShippingSystemApi.md#updateExternalShippingSystemCustomFields) | **PUT** /beta/externalShippingSystem/customFields | Update an externalShippingSystem custom fields
*infoplus.FinanceSystemConnectionApi* | [**addFinanceSystemConnection**](docs/FinanceSystemConnectionApi.md#addFinanceSystemConnection) | **POST** /beta/financeSystemConnection | Create a financeSystemConnection
*infoplus.FinanceSystemConnectionApi* | [**addFinanceSystemConnectionAudit**](docs/FinanceSystemConnectionApi.md#addFinanceSystemConnectionAudit) | **PUT** /beta/financeSystemConnection/{financeSystemConnectionId}/audit/{financeSystemConnectionAudit} | Add new audit for a financeSystemConnection
*infoplus.FinanceSystemConnectionApi* | [**addFinanceSystemConnectionFile**](docs/FinanceSystemConnectionApi.md#addFinanceSystemConnectionFile) | **POST** /beta/financeSystemConnection/{financeSystemConnectionId}/file/{fileName} | Attach a file to a financeSystemConnection
*infoplus.FinanceSystemConnectionApi* | [**addFinanceSystemConnectionFileByURL**](docs/FinanceSystemConnectionApi.md#addFinanceSystemConnectionFileByURL) | **POST** /beta/financeSystemConnection/{financeSystemConnectionId}/file | Attach a file to a financeSystemConnection by URL.
*infoplus.FinanceSystemConnectionApi* | [**addFinanceSystemConnectionTag**](docs/FinanceSystemConnectionApi.md#addFinanceSystemConnectionTag) | **PUT** /beta/financeSystemConnection/{financeSystemConnectionId}/tag/{financeSystemConnectionTag} | Add new tags for a financeSystemConnection.
*infoplus.FinanceSystemConnectionApi* | [**deleteFinanceSystemConnection**](docs/FinanceSystemConnectionApi.md#deleteFinanceSystemConnection) | **DELETE** /beta/financeSystemConnection/{financeSystemConnectionId} | Delete a financeSystemConnection
*infoplus.FinanceSystemConnectionApi* | [**deleteFinanceSystemConnectionFile**](docs/FinanceSystemConnectionApi.md#deleteFinanceSystemConnectionFile) | **DELETE** /beta/financeSystemConnection/{financeSystemConnectionId}/file/{fileId} | Delete a file for a financeSystemConnection.
*infoplus.FinanceSystemConnectionApi* | [**deleteFinanceSystemConnectionTag**](docs/FinanceSystemConnectionApi.md#deleteFinanceSystemConnectionTag) | **DELETE** /beta/financeSystemConnection/{financeSystemConnectionId}/tag/{financeSystemConnectionTag} | Delete a tag for a financeSystemConnection.
*infoplus.FinanceSystemConnectionApi* | [**getDuplicateFinanceSystemConnectionById**](docs/FinanceSystemConnectionApi.md#getDuplicateFinanceSystemConnectionById) | **GET** /beta/financeSystemConnection/duplicate/{financeSystemConnectionId} | Get a duplicated a financeSystemConnection by id
*infoplus.FinanceSystemConnectionApi* | [**getFinanceSystemConnectionByFilter**](docs/FinanceSystemConnectionApi.md#getFinanceSystemConnectionByFilter) | **GET** /beta/financeSystemConnection/search | Search financeSystemConnections by filter
*infoplus.FinanceSystemConnectionApi* | [**getFinanceSystemConnectionById**](docs/FinanceSystemConnectionApi.md#getFinanceSystemConnectionById) | **GET** /beta/financeSystemConnection/{financeSystemConnectionId} | Get a financeSystemConnection by id
*infoplus.FinanceSystemConnectionApi* | [**getFinanceSystemConnectionFiles**](docs/FinanceSystemConnectionApi.md#getFinanceSystemConnectionFiles) | **GET** /beta/financeSystemConnection/{financeSystemConnectionId}/file | Get the files for a financeSystemConnection.
*infoplus.FinanceSystemConnectionApi* | [**getFinanceSystemConnectionTags**](docs/FinanceSystemConnectionApi.md#getFinanceSystemConnectionTags) | **GET** /beta/financeSystemConnection/{financeSystemConnectionId}/tag | Get the tags for a financeSystemConnection.
*infoplus.FinanceSystemConnectionApi* | [**updateFinanceSystemConnection**](docs/FinanceSystemConnectionApi.md#updateFinanceSystemConnection) | **PUT** /beta/financeSystemConnection | Update a financeSystemConnection
*infoplus.FinanceSystemConnectionApi* | [**updateFinanceSystemConnectionCustomFields**](docs/FinanceSystemConnectionApi.md#updateFinanceSystemConnectionCustomFields) | **PUT** /beta/financeSystemConnection/customFields | Update a financeSystemConnection custom fields
*infoplus.FinanceSystemConnectionLogApi* | [**addFinanceSystemConnectionLogAudit**](docs/FinanceSystemConnectionLogApi.md#addFinanceSystemConnectionLogAudit) | **PUT** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/audit/{financeSystemConnectionLogAudit} | Add new audit for a financeSystemConnectionLog
*infoplus.FinanceSystemConnectionLogApi* | [**addFinanceSystemConnectionLogFile**](docs/FinanceSystemConnectionLogApi.md#addFinanceSystemConnectionLogFile) | **POST** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/file/{fileName} | Attach a file to a financeSystemConnectionLog
*infoplus.FinanceSystemConnectionLogApi* | [**addFinanceSystemConnectionLogFileByURL**](docs/FinanceSystemConnectionLogApi.md#addFinanceSystemConnectionLogFileByURL) | **POST** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/file | Attach a file to a financeSystemConnectionLog by URL.
*infoplus.FinanceSystemConnectionLogApi* | [**addFinanceSystemConnectionLogTag**](docs/FinanceSystemConnectionLogApi.md#addFinanceSystemConnectionLogTag) | **PUT** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/tag/{financeSystemConnectionLogTag} | Add new tags for a financeSystemConnectionLog.
*infoplus.FinanceSystemConnectionLogApi* | [**deleteFinanceSystemConnectionLogFile**](docs/FinanceSystemConnectionLogApi.md#deleteFinanceSystemConnectionLogFile) | **DELETE** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/file/{fileId} | Delete a file for a financeSystemConnectionLog.
*infoplus.FinanceSystemConnectionLogApi* | [**deleteFinanceSystemConnectionLogTag**](docs/FinanceSystemConnectionLogApi.md#deleteFinanceSystemConnectionLogTag) | **DELETE** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/tag/{financeSystemConnectionLogTag} | Delete a tag for a financeSystemConnectionLog.
*infoplus.FinanceSystemConnectionLogApi* | [**getDuplicateFinanceSystemConnectionLogById**](docs/FinanceSystemConnectionLogApi.md#getDuplicateFinanceSystemConnectionLogById) | **GET** /beta/financeSystemConnectionLog/duplicate/{financeSystemConnectionLogId} | Get a duplicated a financeSystemConnectionLog by id
*infoplus.FinanceSystemConnectionLogApi* | [**getFinanceSystemConnectionLogByFilter**](docs/FinanceSystemConnectionLogApi.md#getFinanceSystemConnectionLogByFilter) | **GET** /beta/financeSystemConnectionLog/search | Search financeSystemConnectionLogs by filter
*infoplus.FinanceSystemConnectionLogApi* | [**getFinanceSystemConnectionLogById**](docs/FinanceSystemConnectionLogApi.md#getFinanceSystemConnectionLogById) | **GET** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId} | Get a financeSystemConnectionLog by id
*infoplus.FinanceSystemConnectionLogApi* | [**getFinanceSystemConnectionLogFiles**](docs/FinanceSystemConnectionLogApi.md#getFinanceSystemConnectionLogFiles) | **GET** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/file | Get the files for a financeSystemConnectionLog.
*infoplus.FinanceSystemConnectionLogApi* | [**getFinanceSystemConnectionLogTags**](docs/FinanceSystemConnectionLogApi.md#getFinanceSystemConnectionLogTags) | **GET** /beta/financeSystemConnectionLog/{financeSystemConnectionLogId}/tag | Get the tags for a financeSystemConnectionLog.
*infoplus.FulfillmentLayoutPositionApi* | [**addFulfillmentLayoutPositionAudit**](docs/FulfillmentLayoutPositionApi.md#addFulfillmentLayoutPositionAudit) | **PUT** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/audit/{fulfillmentLayoutPositionAudit} | Add new audit for a fulfillmentLayoutPosition
*infoplus.FulfillmentLayoutPositionApi* | [**addFulfillmentLayoutPositionFile**](docs/FulfillmentLayoutPositionApi.md#addFulfillmentLayoutPositionFile) | **POST** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/file/{fileName} | Attach a file to a fulfillmentLayoutPosition
*infoplus.FulfillmentLayoutPositionApi* | [**addFulfillmentLayoutPositionFileByURL**](docs/FulfillmentLayoutPositionApi.md#addFulfillmentLayoutPositionFileByURL) | **POST** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/file | Attach a file to a fulfillmentLayoutPosition by URL.
*infoplus.FulfillmentLayoutPositionApi* | [**addFulfillmentLayoutPositionTag**](docs/FulfillmentLayoutPositionApi.md#addFulfillmentLayoutPositionTag) | **PUT** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/tag/{fulfillmentLayoutPositionTag} | Add new tags for a fulfillmentLayoutPosition.
*infoplus.FulfillmentLayoutPositionApi* | [**deleteFulfillmentLayoutPositionFile**](docs/FulfillmentLayoutPositionApi.md#deleteFulfillmentLayoutPositionFile) | **DELETE** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/file/{fileId} | Delete a file for a fulfillmentLayoutPosition.
*infoplus.FulfillmentLayoutPositionApi* | [**deleteFulfillmentLayoutPositionTag**](docs/FulfillmentLayoutPositionApi.md#deleteFulfillmentLayoutPositionTag) | **DELETE** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/tag/{fulfillmentLayoutPositionTag} | Delete a tag for a fulfillmentLayoutPosition.
*infoplus.FulfillmentLayoutPositionApi* | [**getDuplicateFulfillmentLayoutPositionById**](docs/FulfillmentLayoutPositionApi.md#getDuplicateFulfillmentLayoutPositionById) | **GET** /beta/fulfillmentLayoutPosition/duplicate/{fulfillmentLayoutPositionId} | Get a duplicated a fulfillmentLayoutPosition by id
*infoplus.FulfillmentLayoutPositionApi* | [**getFulfillmentLayoutPositionByFilter**](docs/FulfillmentLayoutPositionApi.md#getFulfillmentLayoutPositionByFilter) | **GET** /beta/fulfillmentLayoutPosition/search | Search fulfillmentLayoutPositions by filter
*infoplus.FulfillmentLayoutPositionApi* | [**getFulfillmentLayoutPositionById**](docs/FulfillmentLayoutPositionApi.md#getFulfillmentLayoutPositionById) | **GET** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId} | Get a fulfillmentLayoutPosition by id
*infoplus.FulfillmentLayoutPositionApi* | [**getFulfillmentLayoutPositionFiles**](docs/FulfillmentLayoutPositionApi.md#getFulfillmentLayoutPositionFiles) | **GET** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/file | Get the files for a fulfillmentLayoutPosition.
*infoplus.FulfillmentLayoutPositionApi* | [**getFulfillmentLayoutPositionTags**](docs/FulfillmentLayoutPositionApi.md#getFulfillmentLayoutPositionTags) | **GET** /beta/fulfillmentLayoutPosition/{fulfillmentLayoutPositionId}/tag | Get the tags for a fulfillmentLayoutPosition.
*infoplus.FulfillmentPlanApi* | [**addFulfillmentPlan**](docs/FulfillmentPlanApi.md#addFulfillmentPlan) | **POST** /beta/fulfillmentPlan | Create a fulfillmentPlan
*infoplus.FulfillmentPlanApi* | [**addFulfillmentPlanAudit**](docs/FulfillmentPlanApi.md#addFulfillmentPlanAudit) | **PUT** /beta/fulfillmentPlan/{fulfillmentPlanId}/audit/{fulfillmentPlanAudit} | Add new audit for a fulfillmentPlan
*infoplus.FulfillmentPlanApi* | [**addFulfillmentPlanFile**](docs/FulfillmentPlanApi.md#addFulfillmentPlanFile) | **POST** /beta/fulfillmentPlan/{fulfillmentPlanId}/file/{fileName} | Attach a file to a fulfillmentPlan
*infoplus.FulfillmentPlanApi* | [**addFulfillmentPlanFileByURL**](docs/FulfillmentPlanApi.md#addFulfillmentPlanFileByURL) | **POST** /beta/fulfillmentPlan/{fulfillmentPlanId}/file | Attach a file to a fulfillmentPlan by URL.
*infoplus.FulfillmentPlanApi* | [**addFulfillmentPlanTag**](docs/FulfillmentPlanApi.md#addFulfillmentPlanTag) | **PUT** /beta/fulfillmentPlan/{fulfillmentPlanId}/tag/{fulfillmentPlanTag} | Add new tags for a fulfillmentPlan.
*infoplus.FulfillmentPlanApi* | [**deleteFulfillmentPlan**](docs/FulfillmentPlanApi.md#deleteFulfillmentPlan) | **DELETE** /beta/fulfillmentPlan/{fulfillmentPlanId} | Delete a fulfillmentPlan
*infoplus.FulfillmentPlanApi* | [**deleteFulfillmentPlanFile**](docs/FulfillmentPlanApi.md#deleteFulfillmentPlanFile) | **DELETE** /beta/fulfillmentPlan/{fulfillmentPlanId}/file/{fileId} | Delete a file for a fulfillmentPlan.
*infoplus.FulfillmentPlanApi* | [**deleteFulfillmentPlanTag**](docs/FulfillmentPlanApi.md#deleteFulfillmentPlanTag) | **DELETE** /beta/fulfillmentPlan/{fulfillmentPlanId}/tag/{fulfillmentPlanTag} | Delete a tag for a fulfillmentPlan.
*infoplus.FulfillmentPlanApi* | [**getDuplicateFulfillmentPlanById**](docs/FulfillmentPlanApi.md#getDuplicateFulfillmentPlanById) | **GET** /beta/fulfillmentPlan/duplicate/{fulfillmentPlanId} | Get a duplicated a fulfillmentPlan by id
*infoplus.FulfillmentPlanApi* | [**getFulfillmentPlanByFilter**](docs/FulfillmentPlanApi.md#getFulfillmentPlanByFilter) | **GET** /beta/fulfillmentPlan/search | Search fulfillmentPlans by filter
*infoplus.FulfillmentPlanApi* | [**getFulfillmentPlanById**](docs/FulfillmentPlanApi.md#getFulfillmentPlanById) | **GET** /beta/fulfillmentPlan/{fulfillmentPlanId} | Get a fulfillmentPlan by id
*infoplus.FulfillmentPlanApi* | [**getFulfillmentPlanFiles**](docs/FulfillmentPlanApi.md#getFulfillmentPlanFiles) | **GET** /beta/fulfillmentPlan/{fulfillmentPlanId}/file | Get the files for a fulfillmentPlan.
*infoplus.FulfillmentPlanApi* | [**getFulfillmentPlanTags**](docs/FulfillmentPlanApi.md#getFulfillmentPlanTags) | **GET** /beta/fulfillmentPlan/{fulfillmentPlanId}/tag | Get the tags for a fulfillmentPlan.
*infoplus.FulfillmentPlanApi* | [**updateFulfillmentPlan**](docs/FulfillmentPlanApi.md#updateFulfillmentPlan) | **PUT** /beta/fulfillmentPlan | Update a fulfillmentPlan
*infoplus.FulfillmentPlanApi* | [**updateFulfillmentPlanCustomFields**](docs/FulfillmentPlanApi.md#updateFulfillmentPlanCustomFields) | **PUT** /beta/fulfillmentPlan/customFields | Update a fulfillmentPlan custom fields
*infoplus.FulfillmentProcessApi* | [**addFulfillmentProcessAudit**](docs/FulfillmentProcessApi.md#addFulfillmentProcessAudit) | **PUT** /beta/fulfillmentProcess/{fulfillmentProcessId}/audit/{fulfillmentProcessAudit} | Add new audit for a fulfillmentProcess
*infoplus.FulfillmentProcessApi* | [**addFulfillmentProcessFile**](docs/FulfillmentProcessApi.md#addFulfillmentProcessFile) | **POST** /beta/fulfillmentProcess/{fulfillmentProcessId}/file/{fileName} | Attach a file to a fulfillmentProcess
*infoplus.FulfillmentProcessApi* | [**addFulfillmentProcessFileByURL**](docs/FulfillmentProcessApi.md#addFulfillmentProcessFileByURL) | **POST** /beta/fulfillmentProcess/{fulfillmentProcessId}/file | Attach a file to a fulfillmentProcess by URL.
*infoplus.FulfillmentProcessApi* | [**addFulfillmentProcessTag**](docs/FulfillmentProcessApi.md#addFulfillmentProcessTag) | **PUT** /beta/fulfillmentProcess/{fulfillmentProcessId}/tag/{fulfillmentProcessTag} | Add new tags for a fulfillmentProcess.
*infoplus.FulfillmentProcessApi* | [**deleteFulfillmentProcessFile**](docs/FulfillmentProcessApi.md#deleteFulfillmentProcessFile) | **DELETE** /beta/fulfillmentProcess/{fulfillmentProcessId}/file/{fileId} | Delete a file for a fulfillmentProcess.
*infoplus.FulfillmentProcessApi* | [**deleteFulfillmentProcessTag**](docs/FulfillmentProcessApi.md#deleteFulfillmentProcessTag) | **DELETE** /beta/fulfillmentProcess/{fulfillmentProcessId}/tag/{fulfillmentProcessTag} | Delete a tag for a fulfillmentProcess.
*infoplus.FulfillmentProcessApi* | [**getDuplicateFulfillmentProcessById**](docs/FulfillmentProcessApi.md#getDuplicateFulfillmentProcessById) | **GET** /beta/fulfillmentProcess/duplicate/{fulfillmentProcessId} | Get a duplicated a fulfillmentProcess by id
*infoplus.FulfillmentProcessApi* | [**getFulfillmentProcessByFilter**](docs/FulfillmentProcessApi.md#getFulfillmentProcessByFilter) | **GET** /beta/fulfillmentProcess/search | Search fulfillmentProcesses by filter
*infoplus.FulfillmentProcessApi* | [**getFulfillmentProcessById**](docs/FulfillmentProcessApi.md#getFulfillmentProcessById) | **GET** /beta/fulfillmentProcess/{fulfillmentProcessId} | Get a fulfillmentProcess by id
*infoplus.FulfillmentProcessApi* | [**getFulfillmentProcessFiles**](docs/FulfillmentProcessApi.md#getFulfillmentProcessFiles) | **GET** /beta/fulfillmentProcess/{fulfillmentProcessId}/file | Get the files for a fulfillmentProcess.
*infoplus.FulfillmentProcessApi* | [**getFulfillmentProcessTags**](docs/FulfillmentProcessApi.md#getFulfillmentProcessTags) | **GET** /beta/fulfillmentProcess/{fulfillmentProcessId}/tag | Get the tags for a fulfillmentProcess.
*infoplus.FulfillmentProcessApi* | [**updateFulfillmentProcessCustomFields**](docs/FulfillmentProcessApi.md#updateFulfillmentProcessCustomFields) | **PUT** /beta/fulfillmentProcess/customFields | Update a fulfillmentProcess custom fields
*infoplus.FulfillmentProcessLogApi* | [**addFulfillmentProcessLogAudit**](docs/FulfillmentProcessLogApi.md#addFulfillmentProcessLogAudit) | **PUT** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/audit/{fulfillmentProcessLogAudit} | Add new audit for a fulfillmentProcessLog
*infoplus.FulfillmentProcessLogApi* | [**addFulfillmentProcessLogFile**](docs/FulfillmentProcessLogApi.md#addFulfillmentProcessLogFile) | **POST** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/file/{fileName} | Attach a file to a fulfillmentProcessLog
*infoplus.FulfillmentProcessLogApi* | [**addFulfillmentProcessLogFileByURL**](docs/FulfillmentProcessLogApi.md#addFulfillmentProcessLogFileByURL) | **POST** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/file | Attach a file to a fulfillmentProcessLog by URL.
*infoplus.FulfillmentProcessLogApi* | [**addFulfillmentProcessLogTag**](docs/FulfillmentProcessLogApi.md#addFulfillmentProcessLogTag) | **PUT** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag/{fulfillmentProcessLogTag} | Add new tags for a fulfillmentProcessLog.
*infoplus.FulfillmentProcessLogApi* | [**deleteFulfillmentProcessLogFile**](docs/FulfillmentProcessLogApi.md#deleteFulfillmentProcessLogFile) | **DELETE** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/file/{fileId} | Delete a file for a fulfillmentProcessLog.
*infoplus.FulfillmentProcessLogApi* | [**deleteFulfillmentProcessLogTag**](docs/FulfillmentProcessLogApi.md#deleteFulfillmentProcessLogTag) | **DELETE** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag/{fulfillmentProcessLogTag} | Delete a tag for a fulfillmentProcessLog.
*infoplus.FulfillmentProcessLogApi* | [**getDuplicateFulfillmentProcessLogById**](docs/FulfillmentProcessLogApi.md#getDuplicateFulfillmentProcessLogById) | **GET** /beta/fulfillmentProcessLog/duplicate/{fulfillmentProcessLogId} | Get a duplicated a fulfillmentProcessLog by id
*infoplus.FulfillmentProcessLogApi* | [**getFulfillmentProcessLogByFilter**](docs/FulfillmentProcessLogApi.md#getFulfillmentProcessLogByFilter) | **GET** /beta/fulfillmentProcessLog/search | Search fulfillmentProcessLogs by filter
*infoplus.FulfillmentProcessLogApi* | [**getFulfillmentProcessLogById**](docs/FulfillmentProcessLogApi.md#getFulfillmentProcessLogById) | **GET** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId} | Get a fulfillmentProcessLog by id
*infoplus.FulfillmentProcessLogApi* | [**getFulfillmentProcessLogFiles**](docs/FulfillmentProcessLogApi.md#getFulfillmentProcessLogFiles) | **GET** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/file | Get the files for a fulfillmentProcessLog.
*infoplus.FulfillmentProcessLogApi* | [**getFulfillmentProcessLogTags**](docs/FulfillmentProcessLogApi.md#getFulfillmentProcessLogTags) | **GET** /beta/fulfillmentProcessLog/{fulfillmentProcessLogId}/tag | Get the tags for a fulfillmentProcessLog.
*infoplus.FulfillmentProcessPickBatchGroupApi* | [**getFulfillmentProcessGroupPicksByById**](docs/FulfillmentProcessPickBatchGroupApi.md#getFulfillmentProcessGroupPicksByById) | **GET** /beta/fulfillmentProcessPickBatchGroup/{fulfillmentProcessPickBatchGroupId} | Get a fulfillmentProcessPickBatchGroup by id
*infoplus.FulfillmentProcessPickBatchGroupApi* | [**getFulfillmentProcessPickBatchGroupBySearchText**](docs/FulfillmentProcessPickBatchGroupApi.md#getFulfillmentProcessPickBatchGroupBySearchText) | **GET** /beta/fulfillmentProcessPickBatchGroup/search | Search fulfillmentProcessPickBatchGroups
*infoplus.Gs1128LabelApi* | [**addGs1128LabelAudit**](docs/Gs1128LabelApi.md#addGs1128LabelAudit) | **PUT** /beta/gs1128Label/{gs1128LabelId}/audit/{gs1128LabelAudit} | Add new audit for a gs1128Label
*infoplus.Gs1128LabelApi* | [**addGs1128LabelFile**](docs/Gs1128LabelApi.md#addGs1128LabelFile) | **POST** /beta/gs1128Label/{gs1128LabelId}/file/{fileName} | Attach a file to a gs1128Label
*infoplus.Gs1128LabelApi* | [**addGs1128LabelFileByURL**](docs/Gs1128LabelApi.md#addGs1128LabelFileByURL) | **POST** /beta/gs1128Label/{gs1128LabelId}/file | Attach a file to a gs1128Label by URL.
*infoplus.Gs1128LabelApi* | [**addGs1128LabelTag**](docs/Gs1128LabelApi.md#addGs1128LabelTag) | **PUT** /beta/gs1128Label/{gs1128LabelId}/tag/{gs1128LabelTag} | Add new tags for a gs1128Label.
*infoplus.Gs1128LabelApi* | [**deleteGs1128Label**](docs/Gs1128LabelApi.md#deleteGs1128Label) | **DELETE** /beta/gs1128Label/{gs1128LabelId} | Delete a gs1128Label
*infoplus.Gs1128LabelApi* | [**deleteGs1128LabelFile**](docs/Gs1128LabelApi.md#deleteGs1128LabelFile) | **DELETE** /beta/gs1128Label/{gs1128LabelId}/file/{fileId} | Delete a file for a gs1128Label.
*infoplus.Gs1128LabelApi* | [**deleteGs1128LabelTag**](docs/Gs1128LabelApi.md#deleteGs1128LabelTag) | **DELETE** /beta/gs1128Label/{gs1128LabelId}/tag/{gs1128LabelTag} | Delete a tag for a gs1128Label.
*infoplus.Gs1128LabelApi* | [**getDuplicateGs1128LabelById**](docs/Gs1128LabelApi.md#getDuplicateGs1128LabelById) | **GET** /beta/gs1128Label/duplicate/{gs1128LabelId} | Get a duplicated a gs1128Label by id
*infoplus.Gs1128LabelApi* | [**getGs1128LabelByFilter**](docs/Gs1128LabelApi.md#getGs1128LabelByFilter) | **GET** /beta/gs1128Label/search | Search gs1128Labels by filter
*infoplus.Gs1128LabelApi* | [**getGs1128LabelById**](docs/Gs1128LabelApi.md#getGs1128LabelById) | **GET** /beta/gs1128Label/{gs1128LabelId} | Get a gs1128Label by id
*infoplus.Gs1128LabelApi* | [**getGs1128LabelFiles**](docs/Gs1128LabelApi.md#getGs1128LabelFiles) | **GET** /beta/gs1128Label/{gs1128LabelId}/file | Get the files for a gs1128Label.
*infoplus.Gs1128LabelApi* | [**getGs1128LabelTags**](docs/Gs1128LabelApi.md#getGs1128LabelTags) | **GET** /beta/gs1128Label/{gs1128LabelId}/tag | Get the tags for a gs1128Label.
*infoplus.Gs1128LabelApi* | [**updateGs1128LabelCustomFields**](docs/Gs1128LabelApi.md#updateGs1128LabelCustomFields) | **PUT** /beta/gs1128Label/customFields | Update a gs1128Label custom fields
*infoplus.Gs1128TemplateApi* | [**addGs1128Template**](docs/Gs1128TemplateApi.md#addGs1128Template) | **POST** /beta/gs1128Template | Create a gs1128Template
*infoplus.Gs1128TemplateApi* | [**addGs1128TemplateAudit**](docs/Gs1128TemplateApi.md#addGs1128TemplateAudit) | **PUT** /beta/gs1128Template/{gs1128TemplateId}/audit/{gs1128TemplateAudit} | Add new audit for a gs1128Template
*infoplus.Gs1128TemplateApi* | [**addGs1128TemplateFile**](docs/Gs1128TemplateApi.md#addGs1128TemplateFile) | **POST** /beta/gs1128Template/{gs1128TemplateId}/file/{fileName} | Attach a file to a gs1128Template
*infoplus.Gs1128TemplateApi* | [**addGs1128TemplateFileByURL**](docs/Gs1128TemplateApi.md#addGs1128TemplateFileByURL) | **POST** /beta/gs1128Template/{gs1128TemplateId}/file | Attach a file to a gs1128Template by URL.
*infoplus.Gs1128TemplateApi* | [**addGs1128TemplateTag**](docs/Gs1128TemplateApi.md#addGs1128TemplateTag) | **PUT** /beta/gs1128Template/{gs1128TemplateId}/tag/{gs1128TemplateTag} | Add new tags for a gs1128Template.
*infoplus.Gs1128TemplateApi* | [**deleteGs1128Template**](docs/Gs1128TemplateApi.md#deleteGs1128Template) | **DELETE** /beta/gs1128Template/{gs1128TemplateId} | Delete a gs1128Template
*infoplus.Gs1128TemplateApi* | [**deleteGs1128TemplateFile**](docs/Gs1128TemplateApi.md#deleteGs1128TemplateFile) | **DELETE** /beta/gs1128Template/{gs1128TemplateId}/file/{fileId} | Delete a file for a gs1128Template.
*infoplus.Gs1128TemplateApi* | [**deleteGs1128TemplateTag**](docs/Gs1128TemplateApi.md#deleteGs1128TemplateTag) | **DELETE** /beta/gs1128Template/{gs1128TemplateId}/tag/{gs1128TemplateTag} | Delete a tag for a gs1128Template.
*infoplus.Gs1128TemplateApi* | [**getDuplicateGs1128TemplateById**](docs/Gs1128TemplateApi.md#getDuplicateGs1128TemplateById) | **GET** /beta/gs1128Template/duplicate/{gs1128TemplateId} | Get a duplicated a gs1128Template by id
*infoplus.Gs1128TemplateApi* | [**getGs1128TemplateByFilter**](docs/Gs1128TemplateApi.md#getGs1128TemplateByFilter) | **GET** /beta/gs1128Template/search | Search gs1128Templates by filter
*infoplus.Gs1128TemplateApi* | [**getGs1128TemplateById**](docs/Gs1128TemplateApi.md#getGs1128TemplateById) | **GET** /beta/gs1128Template/{gs1128TemplateId} | Get a gs1128Template by id
*infoplus.Gs1128TemplateApi* | [**getGs1128TemplateFiles**](docs/Gs1128TemplateApi.md#getGs1128TemplateFiles) | **GET** /beta/gs1128Template/{gs1128TemplateId}/file | Get the files for a gs1128Template.
*infoplus.Gs1128TemplateApi* | [**getGs1128TemplateTags**](docs/Gs1128TemplateApi.md#getGs1128TemplateTags) | **GET** /beta/gs1128Template/{gs1128TemplateId}/tag | Get the tags for a gs1128Template.
*infoplus.Gs1128TemplateApi* | [**updateGs1128Template**](docs/Gs1128TemplateApi.md#updateGs1128Template) | **PUT** /beta/gs1128Template | Update a gs1128Template
*infoplus.IntegrationPartnerApi* | [**getIntegrationPartnerById**](docs/IntegrationPartnerApi.md#getIntegrationPartnerById) | **GET** /beta/integrationPartner/{integrationPartnerId} | Get an integrationPartner by id
*infoplus.IntegrationPartnerApi* | [**getIntegrationPartnerBySearchText**](docs/IntegrationPartnerApi.md#getIntegrationPartnerBySearchText) | **GET** /beta/integrationPartner/search | Search integrationPartners
*infoplus.InventoryAdjustmentApi* | [**addInventoryAdjustmentAudit**](docs/InventoryAdjustmentApi.md#addInventoryAdjustmentAudit) | **PUT** /beta/inventoryAdjustment/{inventoryAdjustmentId}/audit/{inventoryAdjustmentAudit} | Add new audit for an inventoryAdjustment
*infoplus.InventoryAdjustmentApi* | [**addInventoryAdjustmentFile**](docs/InventoryAdjustmentApi.md#addInventoryAdjustmentFile) | **POST** /beta/inventoryAdjustment/{inventoryAdjustmentId}/file/{fileName} | Attach a file to an inventoryAdjustment
*infoplus.InventoryAdjustmentApi* | [**addInventoryAdjustmentFileByURL**](docs/InventoryAdjustmentApi.md#addInventoryAdjustmentFileByURL) | **POST** /beta/inventoryAdjustment/{inventoryAdjustmentId}/file | Attach a file to an inventoryAdjustment by URL.
*infoplus.InventoryAdjustmentApi* | [**addInventoryAdjustmentTag**](docs/InventoryAdjustmentApi.md#addInventoryAdjustmentTag) | **PUT** /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag/{inventoryAdjustmentTag} | Add new tags for an inventoryAdjustment.
*infoplus.InventoryAdjustmentApi* | [**deleteInventoryAdjustmentFile**](docs/InventoryAdjustmentApi.md#deleteInventoryAdjustmentFile) | **DELETE** /beta/inventoryAdjustment/{inventoryAdjustmentId}/file/{fileId} | Delete a file for an inventoryAdjustment.
*infoplus.InventoryAdjustmentApi* | [**deleteInventoryAdjustmentTag**](docs/InventoryAdjustmentApi.md#deleteInventoryAdjustmentTag) | **DELETE** /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag/{inventoryAdjustmentTag} | Delete a tag for an inventoryAdjustment.
*infoplus.InventoryAdjustmentApi* | [**getDuplicateInventoryAdjustmentById**](docs/InventoryAdjustmentApi.md#getDuplicateInventoryAdjustmentById) | **GET** /beta/inventoryAdjustment/duplicate/{inventoryAdjustmentId} | Get a duplicated an inventoryAdjustment by id
*infoplus.InventoryAdjustmentApi* | [**getInventoryAdjustmentByFilter**](docs/InventoryAdjustmentApi.md#getInventoryAdjustmentByFilter) | **GET** /beta/inventoryAdjustment/search | Search inventoryAdjustments by filter
*infoplus.InventoryAdjustmentApi* | [**getInventoryAdjustmentById**](docs/InventoryAdjustmentApi.md#getInventoryAdjustmentById) | **GET** /beta/inventoryAdjustment/{inventoryAdjustmentId} | Get an inventoryAdjustment by id
*infoplus.InventoryAdjustmentApi* | [**getInventoryAdjustmentFiles**](docs/InventoryAdjustmentApi.md#getInventoryAdjustmentFiles) | **GET** /beta/inventoryAdjustment/{inventoryAdjustmentId}/file | Get the files for an inventoryAdjustment.
*infoplus.InventoryAdjustmentApi* | [**getInventoryAdjustmentTags**](docs/InventoryAdjustmentApi.md#getInventoryAdjustmentTags) | **GET** /beta/inventoryAdjustment/{inventoryAdjustmentId}/tag | Get the tags for an inventoryAdjustment.
*infoplus.InventoryAdjustmentApi* | [**updateInventoryAdjustmentCustomFields**](docs/InventoryAdjustmentApi.md#updateInventoryAdjustmentCustomFields) | **PUT** /beta/inventoryAdjustment/customFields | Update an inventoryAdjustment custom fields
*infoplus.InventoryDetailApi* | [**addInventoryDetailAudit**](docs/InventoryDetailApi.md#addInventoryDetailAudit) | **PUT** /beta/inventoryDetail/{inventoryDetailId}/audit/{inventoryDetailAudit} | Add new audit for an inventoryDetail
*infoplus.InventoryDetailApi* | [**addInventoryDetailFile**](docs/InventoryDetailApi.md#addInventoryDetailFile) | **POST** /beta/inventoryDetail/{inventoryDetailId}/file/{fileName} | Attach a file to an inventoryDetail
*infoplus.InventoryDetailApi* | [**addInventoryDetailFileByURL**](docs/InventoryDetailApi.md#addInventoryDetailFileByURL) | **POST** /beta/inventoryDetail/{inventoryDetailId}/file | Attach a file to an inventoryDetail by URL.
*infoplus.InventoryDetailApi* | [**addInventoryDetailTag**](docs/InventoryDetailApi.md#addInventoryDetailTag) | **PUT** /beta/inventoryDetail/{inventoryDetailId}/tag/{inventoryDetailTag} | Add new tags for an inventoryDetail.
*infoplus.InventoryDetailApi* | [**deleteInventoryDetailFile**](docs/InventoryDetailApi.md#deleteInventoryDetailFile) | **DELETE** /beta/inventoryDetail/{inventoryDetailId}/file/{fileId} | Delete a file for an inventoryDetail.
*infoplus.InventoryDetailApi* | [**deleteInventoryDetailTag**](docs/InventoryDetailApi.md#deleteInventoryDetailTag) | **DELETE** /beta/inventoryDetail/{inventoryDetailId}/tag/{inventoryDetailTag} | Delete a tag for an inventoryDetail.
*infoplus.InventoryDetailApi* | [**getDuplicateInventoryDetailById**](docs/InventoryDetailApi.md#getDuplicateInventoryDetailById) | **GET** /beta/inventoryDetail/duplicate/{inventoryDetailId} | Get a duplicated an inventoryDetail by id
*infoplus.InventoryDetailApi* | [**getInventoryDetailByFilter**](docs/InventoryDetailApi.md#getInventoryDetailByFilter) | **GET** /beta/inventoryDetail/search | Search inventoryDetails by filter
*infoplus.InventoryDetailApi* | [**getInventoryDetailById**](docs/InventoryDetailApi.md#getInventoryDetailById) | **GET** /beta/inventoryDetail/{inventoryDetailId} | Get an inventoryDetail by id
*infoplus.InventoryDetailApi* | [**getInventoryDetailFiles**](docs/InventoryDetailApi.md#getInventoryDetailFiles) | **GET** /beta/inventoryDetail/{inventoryDetailId}/file | Get the files for an inventoryDetail.
*infoplus.InventoryDetailApi* | [**getInventoryDetailTags**](docs/InventoryDetailApi.md#getInventoryDetailTags) | **GET** /beta/inventoryDetail/{inventoryDetailId}/tag | Get the tags for an inventoryDetail.
*infoplus.InventoryDetailApi* | [**updateInventoryDetailCustomFields**](docs/InventoryDetailApi.md#updateInventoryDetailCustomFields) | **PUT** /beta/inventoryDetail/customFields | Update an inventoryDetail custom fields
*infoplus.InventorySnapshotApi* | [**addInventorySnapshotAudit**](docs/InventorySnapshotApi.md#addInventorySnapshotAudit) | **PUT** /beta/inventorySnapshot/{inventorySnapshotId}/audit/{inventorySnapshotAudit} | Add new audit for an inventorySnapshot
*infoplus.InventorySnapshotApi* | [**addInventorySnapshotFile**](docs/InventorySnapshotApi.md#addInventorySnapshotFile) | **POST** /beta/inventorySnapshot/{inventorySnapshotId}/file/{fileName} | Attach a file to an inventorySnapshot
*infoplus.InventorySnapshotApi* | [**addInventorySnapshotFileByURL**](docs/InventorySnapshotApi.md#addInventorySnapshotFileByURL) | **POST** /beta/inventorySnapshot/{inventorySnapshotId}/file | Attach a file to an inventorySnapshot by URL.
*infoplus.InventorySnapshotApi* | [**addInventorySnapshotTag**](docs/InventorySnapshotApi.md#addInventorySnapshotTag) | **PUT** /beta/inventorySnapshot/{inventorySnapshotId}/tag/{inventorySnapshotTag} | Add new tags for an inventorySnapshot.
*infoplus.InventorySnapshotApi* | [**deleteInventorySnapshotFile**](docs/InventorySnapshotApi.md#deleteInventorySnapshotFile) | **DELETE** /beta/inventorySnapshot/{inventorySnapshotId}/file/{fileId} | Delete a file for an inventorySnapshot.
*infoplus.InventorySnapshotApi* | [**deleteInventorySnapshotTag**](docs/InventorySnapshotApi.md#deleteInventorySnapshotTag) | **DELETE** /beta/inventorySnapshot/{inventorySnapshotId}/tag/{inventorySnapshotTag} | Delete a tag for an inventorySnapshot.
*infoplus.InventorySnapshotApi* | [**getDuplicateInventorySnapshotById**](docs/InventorySnapshotApi.md#getDuplicateInventorySnapshotById) | **GET** /beta/inventorySnapshot/duplicate/{inventorySnapshotId} | Get a duplicated an inventorySnapshot by id
*infoplus.InventorySnapshotApi* | [**getInventorySnapshotByFilter**](docs/InventorySnapshotApi.md#getInventorySnapshotByFilter) | **GET** /beta/inventorySnapshot/search | Search inventorySnapshots by filter
*infoplus.InventorySnapshotApi* | [**getInventorySnapshotById**](docs/InventorySnapshotApi.md#getInventorySnapshotById) | **GET** /beta/inventorySnapshot/{inventorySnapshotId} | Get an inventorySnapshot by id
*infoplus.InventorySnapshotApi* | [**getInventorySnapshotFiles**](docs/InventorySnapshotApi.md#getInventorySnapshotFiles) | **GET** /beta/inventorySnapshot/{inventorySnapshotId}/file | Get the files for an inventorySnapshot.
*infoplus.InventorySnapshotApi* | [**getInventorySnapshotTags**](docs/InventorySnapshotApi.md#getInventorySnapshotTags) | **GET** /beta/inventorySnapshot/{inventorySnapshotId}/tag | Get the tags for an inventorySnapshot.
*infoplus.InventoryStorageActivityApi* | [**addInventoryStorageActivity**](docs/InventoryStorageActivityApi.md#addInventoryStorageActivity) | **POST** /beta/inventoryStorageActivity | Create an inventoryStorageActivity
*infoplus.InventoryStorageActivityApi* | [**addInventoryStorageActivityAudit**](docs/InventoryStorageActivityApi.md#addInventoryStorageActivityAudit) | **PUT** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/audit/{inventoryStorageActivityAudit} | Add new audit for an inventoryStorageActivity
*infoplus.InventoryStorageActivityApi* | [**addInventoryStorageActivityFile**](docs/InventoryStorageActivityApi.md#addInventoryStorageActivityFile) | **POST** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/file/{fileName} | Attach a file to an inventoryStorageActivity
*infoplus.InventoryStorageActivityApi* | [**addInventoryStorageActivityFileByURL**](docs/InventoryStorageActivityApi.md#addInventoryStorageActivityFileByURL) | **POST** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/file | Attach a file to an inventoryStorageActivity by URL.
*infoplus.InventoryStorageActivityApi* | [**addInventoryStorageActivityTag**](docs/InventoryStorageActivityApi.md#addInventoryStorageActivityTag) | **PUT** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag/{inventoryStorageActivityTag} | Add new tags for an inventoryStorageActivity.
*infoplus.InventoryStorageActivityApi* | [**deleteInventoryStorageActivity**](docs/InventoryStorageActivityApi.md#deleteInventoryStorageActivity) | **DELETE** /beta/inventoryStorageActivity/{inventoryStorageActivityId} | Delete an inventoryStorageActivity
*infoplus.InventoryStorageActivityApi* | [**deleteInventoryStorageActivityFile**](docs/InventoryStorageActivityApi.md#deleteInventoryStorageActivityFile) | **DELETE** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/file/{fileId} | Delete a file for an inventoryStorageActivity.
*infoplus.InventoryStorageActivityApi* | [**deleteInventoryStorageActivityTag**](docs/InventoryStorageActivityApi.md#deleteInventoryStorageActivityTag) | **DELETE** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag/{inventoryStorageActivityTag} | Delete a tag for an inventoryStorageActivity.
*infoplus.InventoryStorageActivityApi* | [**getDuplicateInventoryStorageActivityById**](docs/InventoryStorageActivityApi.md#getDuplicateInventoryStorageActivityById) | **GET** /beta/inventoryStorageActivity/duplicate/{inventoryStorageActivityId} | Get a duplicated an inventoryStorageActivity by id
*infoplus.InventoryStorageActivityApi* | [**getInventoryStorageActivityByFilter**](docs/InventoryStorageActivityApi.md#getInventoryStorageActivityByFilter) | **GET** /beta/inventoryStorageActivity/search | Search inventoryStorageActivitys by filter
*infoplus.InventoryStorageActivityApi* | [**getInventoryStorageActivityById**](docs/InventoryStorageActivityApi.md#getInventoryStorageActivityById) | **GET** /beta/inventoryStorageActivity/{inventoryStorageActivityId} | Get an inventoryStorageActivity by id
*infoplus.InventoryStorageActivityApi* | [**getInventoryStorageActivityFiles**](docs/InventoryStorageActivityApi.md#getInventoryStorageActivityFiles) | **GET** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/file | Get the files for an inventoryStorageActivity.
*infoplus.InventoryStorageActivityApi* | [**getInventoryStorageActivityTags**](docs/InventoryStorageActivityApi.md#getInventoryStorageActivityTags) | **GET** /beta/inventoryStorageActivity/{inventoryStorageActivityId}/tag | Get the tags for an inventoryStorageActivity.
*infoplus.InventoryStorageActivityApi* | [**updateInventoryStorageActivity**](docs/InventoryStorageActivityApi.md#updateInventoryStorageActivity) | **PUT** /beta/inventoryStorageActivity | Update an inventoryStorageActivity
*infoplus.InvoiceWorksheetApi* | [**addInvoiceWorksheet**](docs/InvoiceWorksheetApi.md#addInvoiceWorksheet) | **POST** /beta/invoiceWorksheet | Create an invoiceWorksheet
*infoplus.InvoiceWorksheetApi* | [**addInvoiceWorksheetAudit**](docs/InvoiceWorksheetApi.md#addInvoiceWorksheetAudit) | **PUT** /beta/invoiceWorksheet/{invoiceWorksheetId}/audit/{invoiceWorksheetAudit} | Add new audit for an invoiceWorksheet
*infoplus.InvoiceWorksheetApi* | [**addInvoiceWorksheetFile**](docs/InvoiceWorksheetApi.md#addInvoiceWorksheetFile) | **POST** /beta/invoiceWorksheet/{invoiceWorksheetId}/file/{fileName} | Attach a file to an invoiceWorksheet
*infoplus.InvoiceWorksheetApi* | [**addInvoiceWorksheetFileByURL**](docs/InvoiceWorksheetApi.md#addInvoiceWorksheetFileByURL) | **POST** /beta/invoiceWorksheet/{invoiceWorksheetId}/file | Attach a file to an invoiceWorksheet by URL.
*infoplus.InvoiceWorksheetApi* | [**addInvoiceWorksheetTag**](docs/InvoiceWorksheetApi.md#addInvoiceWorksheetTag) | **PUT** /beta/invoiceWorksheet/{invoiceWorksheetId}/tag/{invoiceWorksheetTag} | Add new tags for an invoiceWorksheet.
*infoplus.InvoiceWorksheetApi* | [**deleteInvoiceWorksheet**](docs/InvoiceWorksheetApi.md#deleteInvoiceWorksheet) | **DELETE** /beta/invoiceWorksheet/{invoiceWorksheetId} | Delete an invoiceWorksheet
*infoplus.InvoiceWorksheetApi* | [**deleteInvoiceWorksheetFile**](docs/InvoiceWorksheetApi.md#deleteInvoiceWorksheetFile) | **DELETE** /beta/invoiceWorksheet/{invoiceWorksheetId}/file/{fileId} | Delete a file for an invoiceWorksheet.
*infoplus.InvoiceWorksheetApi* | [**deleteInvoiceWorksheetTag**](docs/InvoiceWorksheetApi.md#deleteInvoiceWorksheetTag) | **DELETE** /beta/invoiceWorksheet/{invoiceWorksheetId}/tag/{invoiceWorksheetTag} | Delete a tag for an invoiceWorksheet.
*infoplus.InvoiceWorksheetApi* | [**getDuplicateInvoiceWorksheetById**](docs/InvoiceWorksheetApi.md#getDuplicateInvoiceWorksheetById) | **GET** /beta/invoiceWorksheet/duplicate/{invoiceWorksheetId} | Get a duplicated an invoiceWorksheet by id
*infoplus.InvoiceWorksheetApi* | [**getInvoiceWorksheetByFilter**](docs/InvoiceWorksheetApi.md#getInvoiceWorksheetByFilter) | **GET** /beta/invoiceWorksheet/search | Search invoiceWorksheets by filter
*infoplus.InvoiceWorksheetApi* | [**getInvoiceWorksheetById**](docs/InvoiceWorksheetApi.md#getInvoiceWorksheetById) | **GET** /beta/invoiceWorksheet/{invoiceWorksheetId} | Get an invoiceWorksheet by id
*infoplus.InvoiceWorksheetApi* | [**getInvoiceWorksheetFiles**](docs/InvoiceWorksheetApi.md#getInvoiceWorksheetFiles) | **GET** /beta/invoiceWorksheet/{invoiceWorksheetId}/file | Get the files for an invoiceWorksheet.
*infoplus.InvoiceWorksheetApi* | [**getInvoiceWorksheetTags**](docs/InvoiceWorksheetApi.md#getInvoiceWorksheetTags) | **GET** /beta/invoiceWorksheet/{invoiceWorksheetId}/tag | Get the tags for an invoiceWorksheet.
*infoplus.InvoiceWorksheetApi* | [**updateInvoiceWorksheet**](docs/InvoiceWorksheetApi.md#updateInvoiceWorksheet) | **PUT** /beta/invoiceWorksheet | Update an invoiceWorksheet
*infoplus.InvoiceWorksheetLineApi* | [**addInvoiceWorksheetLine**](docs/InvoiceWorksheetLineApi.md#addInvoiceWorksheetLine) | **POST** /beta/invoiceWorksheetLine | Create an invoiceWorksheetLine
*infoplus.InvoiceWorksheetLineApi* | [**addInvoiceWorksheetLineAudit**](docs/InvoiceWorksheetLineApi.md#addInvoiceWorksheetLineAudit) | **PUT** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/audit/{invoiceWorksheetLineAudit} | Add new audit for an invoiceWorksheetLine
*infoplus.InvoiceWorksheetLineApi* | [**addInvoiceWorksheetLineFile**](docs/InvoiceWorksheetLineApi.md#addInvoiceWorksheetLineFile) | **POST** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file/{fileName} | Attach a file to an invoiceWorksheetLine
*infoplus.InvoiceWorksheetLineApi* | [**addInvoiceWorksheetLineFileByURL**](docs/InvoiceWorksheetLineApi.md#addInvoiceWorksheetLineFileByURL) | **POST** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file | Attach a file to an invoiceWorksheetLine by URL.
*infoplus.InvoiceWorksheetLineApi* | [**addInvoiceWorksheetLineTag**](docs/InvoiceWorksheetLineApi.md#addInvoiceWorksheetLineTag) | **PUT** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Add new tags for an invoiceWorksheetLine.
*infoplus.InvoiceWorksheetLineApi* | [**deleteInvoiceWorksheetLine**](docs/InvoiceWorksheetLineApi.md#deleteInvoiceWorksheetLine) | **DELETE** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Delete an invoiceWorksheetLine
*infoplus.InvoiceWorksheetLineApi* | [**deleteInvoiceWorksheetLineFile**](docs/InvoiceWorksheetLineApi.md#deleteInvoiceWorksheetLineFile) | **DELETE** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file/{fileId} | Delete a file for an invoiceWorksheetLine.
*infoplus.InvoiceWorksheetLineApi* | [**deleteInvoiceWorksheetLineTag**](docs/InvoiceWorksheetLineApi.md#deleteInvoiceWorksheetLineTag) | **DELETE** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag/{invoiceWorksheetLineTag} | Delete a tag for an invoiceWorksheetLine.
*infoplus.InvoiceWorksheetLineApi* | [**getDuplicateInvoiceWorksheetLineById**](docs/InvoiceWorksheetLineApi.md#getDuplicateInvoiceWorksheetLineById) | **GET** /beta/invoiceWorksheetLine/duplicate/{invoiceWorksheetLineId} | Get a duplicated an invoiceWorksheetLine by id
*infoplus.InvoiceWorksheetLineApi* | [**getInvoiceWorksheetLineByFilter**](docs/InvoiceWorksheetLineApi.md#getInvoiceWorksheetLineByFilter) | **GET** /beta/invoiceWorksheetLine/search | Search invoiceWorksheetLines by filter
*infoplus.InvoiceWorksheetLineApi* | [**getInvoiceWorksheetLineById**](docs/InvoiceWorksheetLineApi.md#getInvoiceWorksheetLineById) | **GET** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId} | Get an invoiceWorksheetLine by id
*infoplus.InvoiceWorksheetLineApi* | [**getInvoiceWorksheetLineFiles**](docs/InvoiceWorksheetLineApi.md#getInvoiceWorksheetLineFiles) | **GET** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/file | Get the files for an invoiceWorksheetLine.
*infoplus.InvoiceWorksheetLineApi* | [**getInvoiceWorksheetLineTags**](docs/InvoiceWorksheetLineApi.md#getInvoiceWorksheetLineTags) | **GET** /beta/invoiceWorksheetLine/{invoiceWorksheetLineId}/tag | Get the tags for an invoiceWorksheetLine.
*infoplus.InvoiceWorksheetLineApi* | [**updateInvoiceWorksheetLine**](docs/InvoiceWorksheetLineApi.md#updateInvoiceWorksheetLine) | **PUT** /beta/invoiceWorksheetLine | Update an invoiceWorksheetLine
*infoplus.InvoiceWorksheetLineDetailApi* | [**addInvoiceWorksheetLineDetailAudit**](docs/InvoiceWorksheetLineDetailApi.md#addInvoiceWorksheetLineDetailAudit) | **PUT** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/audit/{invoiceWorksheetLineDetailAudit} | Add new audit for an invoiceWorksheetLineDetail
*infoplus.InvoiceWorksheetLineDetailApi* | [**addInvoiceWorksheetLineDetailFile**](docs/InvoiceWorksheetLineDetailApi.md#addInvoiceWorksheetLineDetailFile) | **POST** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/file/{fileName} | Attach a file to an invoiceWorksheetLineDetail
*infoplus.InvoiceWorksheetLineDetailApi* | [**addInvoiceWorksheetLineDetailFileByURL**](docs/InvoiceWorksheetLineDetailApi.md#addInvoiceWorksheetLineDetailFileByURL) | **POST** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/file | Attach a file to an invoiceWorksheetLineDetail by URL.
*infoplus.InvoiceWorksheetLineDetailApi* | [**addInvoiceWorksheetLineDetailTag**](docs/InvoiceWorksheetLineDetailApi.md#addInvoiceWorksheetLineDetailTag) | **PUT** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/tag/{invoiceWorksheetLineDetailTag} | Add new tags for an invoiceWorksheetLineDetail.
*infoplus.InvoiceWorksheetLineDetailApi* | [**deleteInvoiceWorksheetLineDetailFile**](docs/InvoiceWorksheetLineDetailApi.md#deleteInvoiceWorksheetLineDetailFile) | **DELETE** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/file/{fileId} | Delete a file for an invoiceWorksheetLineDetail.
*infoplus.InvoiceWorksheetLineDetailApi* | [**deleteInvoiceWorksheetLineDetailTag**](docs/InvoiceWorksheetLineDetailApi.md#deleteInvoiceWorksheetLineDetailTag) | **DELETE** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/tag/{invoiceWorksheetLineDetailTag} | Delete a tag for an invoiceWorksheetLineDetail.
*infoplus.InvoiceWorksheetLineDetailApi* | [**getDuplicateInvoiceWorksheetLineDetailById**](docs/InvoiceWorksheetLineDetailApi.md#getDuplicateInvoiceWorksheetLineDetailById) | **GET** /beta/invoiceWorksheetLineDetail/duplicate/{invoiceWorksheetLineDetailId} | Get a duplicated an invoiceWorksheetLineDetail by id
*infoplus.InvoiceWorksheetLineDetailApi* | [**getInvoiceWorksheetLineDetailByFilter**](docs/InvoiceWorksheetLineDetailApi.md#getInvoiceWorksheetLineDetailByFilter) | **GET** /beta/invoiceWorksheetLineDetail/search | Search invoiceWorksheetLineDetails by filter
*infoplus.InvoiceWorksheetLineDetailApi* | [**getInvoiceWorksheetLineDetailById**](docs/InvoiceWorksheetLineDetailApi.md#getInvoiceWorksheetLineDetailById) | **GET** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId} | Get an invoiceWorksheetLineDetail by id
*infoplus.InvoiceWorksheetLineDetailApi* | [**getInvoiceWorksheetLineDetailFiles**](docs/InvoiceWorksheetLineDetailApi.md#getInvoiceWorksheetLineDetailFiles) | **GET** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/file | Get the files for an invoiceWorksheetLineDetail.
*infoplus.InvoiceWorksheetLineDetailApi* | [**getInvoiceWorksheetLineDetailTags**](docs/InvoiceWorksheetLineDetailApi.md#getInvoiceWorksheetLineDetailTags) | **GET** /beta/invoiceWorksheetLineDetail/{invoiceWorksheetLineDetailId}/tag | Get the tags for an invoiceWorksheetLineDetail.
*infoplus.InvoiceWorksheetLineDetailApi* | [**updateInvoiceWorksheetLineDetailCustomFields**](docs/InvoiceWorksheetLineDetailApi.md#updateInvoiceWorksheetLineDetailCustomFields) | **PUT** /beta/invoiceWorksheetLineDetail/customFields | Update an invoiceWorksheetLineDetail custom fields
*infoplus.ItemApi* | [**addItem**](docs/ItemApi.md#addItem) | **POST** /beta/item | Create an item
*infoplus.ItemApi* | [**addItemAudit**](docs/ItemApi.md#addItemAudit) | **PUT** /beta/item/{itemId}/audit/{itemAudit} | Add new audit for an item
*infoplus.ItemApi* | [**addItemFile**](docs/ItemApi.md#addItemFile) | **POST** /beta/item/{itemId}/file/{fileName} | Attach a file to an item
*infoplus.ItemApi* | [**addItemFileByURL**](docs/ItemApi.md#addItemFileByURL) | **POST** /beta/item/{itemId}/file | Attach a file to an item by URL.
*infoplus.ItemApi* | [**addItemTag**](docs/ItemApi.md#addItemTag) | **PUT** /beta/item/{itemId}/tag/{itemTag} | Add new tags for an item.
*infoplus.ItemApi* | [**deleteItem**](docs/ItemApi.md#deleteItem) | **DELETE** /beta/item/{itemId} | Delete an item
*infoplus.ItemApi* | [**deleteItemFile**](docs/ItemApi.md#deleteItemFile) | **DELETE** /beta/item/{itemId}/file/{fileId} | Delete a file for an item.
*infoplus.ItemApi* | [**deleteItemTag**](docs/ItemApi.md#deleteItemTag) | **DELETE** /beta/item/{itemId}/tag/{itemTag} | Delete a tag for an item.
*infoplus.ItemApi* | [**getBySKU**](docs/ItemApi.md#getBySKU) | **GET** /beta/item/getBySKU | Get an item by SKU
*infoplus.ItemApi* | [**getDuplicateItemById**](docs/ItemApi.md#getDuplicateItemById) | **GET** /beta/item/duplicate/{itemId} | Get a duplicated an item by id
*infoplus.ItemApi* | [**getItemByFilter**](docs/ItemApi.md#getItemByFilter) | **GET** /beta/item/search | Search items by filter
*infoplus.ItemApi* | [**getItemById**](docs/ItemApi.md#getItemById) | **GET** /beta/item/{itemId} | Get an item by id
*infoplus.ItemApi* | [**getItemFiles**](docs/ItemApi.md#getItemFiles) | **GET** /beta/item/{itemId}/file | Get the files for an item.
*infoplus.ItemApi* | [**getItemTags**](docs/ItemApi.md#getItemTags) | **GET** /beta/item/{itemId}/tag | Get the tags for an item.
*infoplus.ItemApi* | [**updateItem**](docs/ItemApi.md#updateItem) | **PUT** /beta/item | Update an item
*infoplus.ItemApi* | [**updateItemCustomFields**](docs/ItemApi.md#updateItemCustomFields) | **PUT** /beta/item/customFields | Update an item custom fields
*infoplus.ItemAccountCodeApi* | [**addItemAccountCode**](docs/ItemAccountCodeApi.md#addItemAccountCode) | **POST** /beta/itemAccountCode | Create an itemAccountCode
*infoplus.ItemAccountCodeApi* | [**addItemAccountCodeAudit**](docs/ItemAccountCodeApi.md#addItemAccountCodeAudit) | **PUT** /beta/itemAccountCode/{itemAccountCodeId}/audit/{itemAccountCodeAudit} | Add new audit for an itemAccountCode
*infoplus.ItemAccountCodeApi* | [**addItemAccountCodeFile**](docs/ItemAccountCodeApi.md#addItemAccountCodeFile) | **POST** /beta/itemAccountCode/{itemAccountCodeId}/file/{fileName} | Attach a file to an itemAccountCode
*infoplus.ItemAccountCodeApi* | [**addItemAccountCodeFileByURL**](docs/ItemAccountCodeApi.md#addItemAccountCodeFileByURL) | **POST** /beta/itemAccountCode/{itemAccountCodeId}/file | Attach a file to an itemAccountCode by URL.
*infoplus.ItemAccountCodeApi* | [**addItemAccountCodeTag**](docs/ItemAccountCodeApi.md#addItemAccountCodeTag) | **PUT** /beta/itemAccountCode/{itemAccountCodeId}/tag/{itemAccountCodeTag} | Add new tags for an itemAccountCode.
*infoplus.ItemAccountCodeApi* | [**deleteItemAccountCode**](docs/ItemAccountCodeApi.md#deleteItemAccountCode) | **DELETE** /beta/itemAccountCode/{itemAccountCodeId} | Delete an itemAccountCode
*infoplus.ItemAccountCodeApi* | [**deleteItemAccountCodeFile**](docs/ItemAccountCodeApi.md#deleteItemAccountCodeFile) | **DELETE** /beta/itemAccountCode/{itemAccountCodeId}/file/{fileId} | Delete a file for an itemAccountCode.
*infoplus.ItemAccountCodeApi* | [**deleteItemAccountCodeTag**](docs/ItemAccountCodeApi.md#deleteItemAccountCodeTag) | **DELETE** /beta/itemAccountCode/{itemAccountCodeId}/tag/{itemAccountCodeTag} | Delete a tag for an itemAccountCode.
*infoplus.ItemAccountCodeApi* | [**getDuplicateItemAccountCodeById**](docs/ItemAccountCodeApi.md#getDuplicateItemAccountCodeById) | **GET** /beta/itemAccountCode/duplicate/{itemAccountCodeId} | Get a duplicated an itemAccountCode by id
*infoplus.ItemAccountCodeApi* | [**getItemAccountCodeByFilter**](docs/ItemAccountCodeApi.md#getItemAccountCodeByFilter) | **GET** /beta/itemAccountCode/search | Search itemAccountCodes by filter
*infoplus.ItemAccountCodeApi* | [**getItemAccountCodeById**](docs/ItemAccountCodeApi.md#getItemAccountCodeById) | **GET** /beta/itemAccountCode/{itemAccountCodeId} | Get an itemAccountCode by id
*infoplus.ItemAccountCodeApi* | [**getItemAccountCodeFiles**](docs/ItemAccountCodeApi.md#getItemAccountCodeFiles) | **GET** /beta/itemAccountCode/{itemAccountCodeId}/file | Get the files for an itemAccountCode.
*infoplus.ItemAccountCodeApi* | [**getItemAccountCodeTags**](docs/ItemAccountCodeApi.md#getItemAccountCodeTags) | **GET** /beta/itemAccountCode/{itemAccountCodeId}/tag | Get the tags for an itemAccountCode.
*infoplus.ItemAccountCodeApi* | [**updateItemAccountCode**](docs/ItemAccountCodeApi.md#updateItemAccountCode) | **PUT** /beta/itemAccountCode | Update an itemAccountCode
*infoplus.ItemActivityApi* | [**addItemActivityAudit**](docs/ItemActivityApi.md#addItemActivityAudit) | **PUT** /beta/itemActivity/{itemActivityId}/audit/{itemActivityAudit} | Add new audit for an itemActivity
*infoplus.ItemActivityApi* | [**addItemActivityFile**](docs/ItemActivityApi.md#addItemActivityFile) | **POST** /beta/itemActivity/{itemActivityId}/file/{fileName} | Attach a file to an itemActivity
*infoplus.ItemActivityApi* | [**addItemActivityFileByURL**](docs/ItemActivityApi.md#addItemActivityFileByURL) | **POST** /beta/itemActivity/{itemActivityId}/file | Attach a file to an itemActivity by URL.
*infoplus.ItemActivityApi* | [**addItemActivityTag**](docs/ItemActivityApi.md#addItemActivityTag) | **PUT** /beta/itemActivity/{itemActivityId}/tag/{itemActivityTag} | Add new tags for an itemActivity.
*infoplus.ItemActivityApi* | [**deleteItemActivityFile**](docs/ItemActivityApi.md#deleteItemActivityFile) | **DELETE** /beta/itemActivity/{itemActivityId}/file/{fileId} | Delete a file for an itemActivity.
*infoplus.ItemActivityApi* | [**deleteItemActivityTag**](docs/ItemActivityApi.md#deleteItemActivityTag) | **DELETE** /beta/itemActivity/{itemActivityId}/tag/{itemActivityTag} | Delete a tag for an itemActivity.
*infoplus.ItemActivityApi* | [**getDuplicateItemActivityById**](docs/ItemActivityApi.md#getDuplicateItemActivityById) | **GET** /beta/itemActivity/duplicate/{itemActivityId} | Get a duplicated an itemActivity by id
*infoplus.ItemActivityApi* | [**getItemActivityByFilter**](docs/ItemActivityApi.md#getItemActivityByFilter) | **GET** /beta/itemActivity/search | Search itemActivitys by filter
*infoplus.ItemActivityApi* | [**getItemActivityById**](docs/ItemActivityApi.md#getItemActivityById) | **GET** /beta/itemActivity/{itemActivityId} | Get an itemActivity by id
*infoplus.ItemActivityApi* | [**getItemActivityFiles**](docs/ItemActivityApi.md#getItemActivityFiles) | **GET** /beta/itemActivity/{itemActivityId}/file | Get the files for an itemActivity.
*infoplus.ItemActivityApi* | [**getItemActivityTags**](docs/ItemActivityApi.md#getItemActivityTags) | **GET** /beta/itemActivity/{itemActivityId}/tag | Get the tags for an itemActivity.
*infoplus.ItemActivityTypeApi* | [**getItemActivityTypeById**](docs/ItemActivityTypeApi.md#getItemActivityTypeById) | **GET** /beta/itemActivityType/{itemActivityTypeId} | Get an itemActivityType by id
*infoplus.ItemActivityTypeApi* | [**getItemActivityTypeBySearchText**](docs/ItemActivityTypeApi.md#getItemActivityTypeBySearchText) | **GET** /beta/itemActivityType/search | Search itemActivityTypes
*infoplus.ItemBuyerApi* | [**addItemBuyer**](docs/ItemBuyerApi.md#addItemBuyer) | **POST** /beta/itemBuyer | Create an itemBuyer
*infoplus.ItemBuyerApi* | [**addItemBuyerAudit**](docs/ItemBuyerApi.md#addItemBuyerAudit) | **PUT** /beta/itemBuyer/{itemBuyerId}/audit/{itemBuyerAudit} | Add new audit for an itemBuyer
*infoplus.ItemBuyerApi* | [**addItemBuyerFile**](docs/ItemBuyerApi.md#addItemBuyerFile) | **POST** /beta/itemBuyer/{itemBuyerId}/file/{fileName} | Attach a file to an itemBuyer
*infoplus.ItemBuyerApi* | [**addItemBuyerFileByURL**](docs/ItemBuyerApi.md#addItemBuyerFileByURL) | **POST** /beta/itemBuyer/{itemBuyerId}/file | Attach a file to an itemBuyer by URL.
*infoplus.ItemBuyerApi* | [**addItemBuyerTag**](docs/ItemBuyerApi.md#addItemBuyerTag) | **PUT** /beta/itemBuyer/{itemBuyerId}/tag/{itemBuyerTag} | Add new tags for an itemBuyer.
*infoplus.ItemBuyerApi* | [**deleteItemBuyer**](docs/ItemBuyerApi.md#deleteItemBuyer) | **DELETE** /beta/itemBuyer/{itemBuyerId} | Delete an itemBuyer
*infoplus.ItemBuyerApi* | [**deleteItemBuyerFile**](docs/ItemBuyerApi.md#deleteItemBuyerFile) | **DELETE** /beta/itemBuyer/{itemBuyerId}/file/{fileId} | Delete a file for an itemBuyer.
*infoplus.ItemBuyerApi* | [**deleteItemBuyerTag**](docs/ItemBuyerApi.md#deleteItemBuyerTag) | **DELETE** /beta/itemBuyer/{itemBuyerId}/tag/{itemBuyerTag} | Delete a tag for an itemBuyer.
*infoplus.ItemBuyerApi* | [**getDuplicateItemBuyerById**](docs/ItemBuyerApi.md#getDuplicateItemBuyerById) | **GET** /beta/itemBuyer/duplicate/{itemBuyerId} | Get a duplicated an itemBuyer by id
*infoplus.ItemBuyerApi* | [**getItemBuyerByFilter**](docs/ItemBuyerApi.md#getItemBuyerByFilter) | **GET** /beta/itemBuyer/search | Search itemBuyers by filter
*infoplus.ItemBuyerApi* | [**getItemBuyerById**](docs/ItemBuyerApi.md#getItemBuyerById) | **GET** /beta/itemBuyer/{itemBuyerId} | Get an itemBuyer by id
*infoplus.ItemBuyerApi* | [**getItemBuyerFiles**](docs/ItemBuyerApi.md#getItemBuyerFiles) | **GET** /beta/itemBuyer/{itemBuyerId}/file | Get the files for an itemBuyer.
*infoplus.ItemBuyerApi* | [**getItemBuyerTags**](docs/ItemBuyerApi.md#getItemBuyerTags) | **GET** /beta/itemBuyer/{itemBuyerId}/tag | Get the tags for an itemBuyer.
*infoplus.ItemBuyerApi* | [**updateItemBuyer**](docs/ItemBuyerApi.md#updateItemBuyer) | **PUT** /beta/itemBuyer | Update an itemBuyer
*infoplus.ItemCategoryApi* | [**addItemCategory**](docs/ItemCategoryApi.md#addItemCategory) | **POST** /beta/itemCategory | Create an itemCategory
*infoplus.ItemCategoryApi* | [**addItemCategoryAudit**](docs/ItemCategoryApi.md#addItemCategoryAudit) | **PUT** /beta/itemCategory/{itemCategoryId}/audit/{itemCategoryAudit} | Add new audit for an itemCategory
*infoplus.ItemCategoryApi* | [**addItemCategoryFile**](docs/ItemCategoryApi.md#addItemCategoryFile) | **POST** /beta/itemCategory/{itemCategoryId}/file/{fileName} | Attach a file to an itemCategory
*infoplus.ItemCategoryApi* | [**addItemCategoryFileByURL**](docs/ItemCategoryApi.md#addItemCategoryFileByURL) | **POST** /beta/itemCategory/{itemCategoryId}/file | Attach a file to an itemCategory by URL.
*infoplus.ItemCategoryApi* | [**addItemCategoryTag**](docs/ItemCategoryApi.md#addItemCategoryTag) | **PUT** /beta/itemCategory/{itemCategoryId}/tag/{itemCategoryTag} | Add new tags for an itemCategory.
*infoplus.ItemCategoryApi* | [**deleteItemCategory**](docs/ItemCategoryApi.md#deleteItemCategory) | **DELETE** /beta/itemCategory/{itemCategoryId} | Delete an itemCategory
*infoplus.ItemCategoryApi* | [**deleteItemCategoryFile**](docs/ItemCategoryApi.md#deleteItemCategoryFile) | **DELETE** /beta/itemCategory/{itemCategoryId}/file/{fileId} | Delete a file for an itemCategory.
*infoplus.ItemCategoryApi* | [**deleteItemCategoryTag**](docs/ItemCategoryApi.md#deleteItemCategoryTag) | **DELETE** /beta/itemCategory/{itemCategoryId}/tag/{itemCategoryTag} | Delete a tag for an itemCategory.
*infoplus.ItemCategoryApi* | [**getDuplicateItemCategoryById**](docs/ItemCategoryApi.md#getDuplicateItemCategoryById) | **GET** /beta/itemCategory/duplicate/{itemCategoryId} | Get a duplicated an itemCategory by id
*infoplus.ItemCategoryApi* | [**getItemCategoryByFilter**](docs/ItemCategoryApi.md#getItemCategoryByFilter) | **GET** /beta/itemCategory/search | Search itemCategorys by filter
*infoplus.ItemCategoryApi* | [**getItemCategoryById**](docs/ItemCategoryApi.md#getItemCategoryById) | **GET** /beta/itemCategory/{itemCategoryId} | Get an itemCategory by id
*infoplus.ItemCategoryApi* | [**getItemCategoryFiles**](docs/ItemCategoryApi.md#getItemCategoryFiles) | **GET** /beta/itemCategory/{itemCategoryId}/file | Get the files for an itemCategory.
*infoplus.ItemCategoryApi* | [**getItemCategoryTags**](docs/ItemCategoryApi.md#getItemCategoryTags) | **GET** /beta/itemCategory/{itemCategoryId}/tag | Get the tags for an itemCategory.
*infoplus.ItemCategoryApi* | [**updateItemCategory**](docs/ItemCategoryApi.md#updateItemCategory) | **PUT** /beta/itemCategory | Update an itemCategory
*infoplus.ItemLowstockCodeApi* | [**addItemLowstockCode**](docs/ItemLowstockCodeApi.md#addItemLowstockCode) | **POST** /beta/itemLowstockCode | Create an itemLowstockCode
*infoplus.ItemLowstockCodeApi* | [**addItemLowstockCodeAudit**](docs/ItemLowstockCodeApi.md#addItemLowstockCodeAudit) | **PUT** /beta/itemLowstockCode/{itemLowstockCodeId}/audit/{itemLowstockCodeAudit} | Add new audit for an itemLowstockCode
*infoplus.ItemLowstockCodeApi* | [**addItemLowstockCodeFile**](docs/ItemLowstockCodeApi.md#addItemLowstockCodeFile) | **POST** /beta/itemLowstockCode/{itemLowstockCodeId}/file/{fileName} | Attach a file to an itemLowstockCode
*infoplus.ItemLowstockCodeApi* | [**addItemLowstockCodeFileByURL**](docs/ItemLowstockCodeApi.md#addItemLowstockCodeFileByURL) | **POST** /beta/itemLowstockCode/{itemLowstockCodeId}/file | Attach a file to an itemLowstockCode by URL.
*infoplus.ItemLowstockCodeApi* | [**addItemLowstockCodeTag**](docs/ItemLowstockCodeApi.md#addItemLowstockCodeTag) | **PUT** /beta/itemLowstockCode/{itemLowstockCodeId}/tag/{itemLowstockCodeTag} | Add new tags for an itemLowstockCode.
*infoplus.ItemLowstockCodeApi* | [**deleteItemLowstockCode**](docs/ItemLowstockCodeApi.md#deleteItemLowstockCode) | **DELETE** /beta/itemLowstockCode/{itemLowstockCodeId} | Delete an itemLowstockCode
*infoplus.ItemLowstockCodeApi* | [**deleteItemLowstockCodeFile**](docs/ItemLowstockCodeApi.md#deleteItemLowstockCodeFile) | **DELETE** /beta/itemLowstockCode/{itemLowstockCodeId}/file/{fileId} | Delete a file for an itemLowstockCode.
*infoplus.ItemLowstockCodeApi* | [**deleteItemLowstockCodeTag**](docs/ItemLowstockCodeApi.md#deleteItemLowstockCodeTag) | **DELETE** /beta/itemLowstockCode/{itemLowstockCodeId}/tag/{itemLowstockCodeTag} | Delete a tag for an itemLowstockCode.
*infoplus.ItemLowstockCodeApi* | [**getDuplicateItemLowstockCodeById**](docs/ItemLowstockCodeApi.md#getDuplicateItemLowstockCodeById) | **GET** /beta/itemLowstockCode/duplicate/{itemLowstockCodeId} | Get a duplicated an itemLowstockCode by id
*infoplus.ItemLowstockCodeApi* | [**getItemLowstockCodeByFilter**](docs/ItemLowstockCodeApi.md#getItemLowstockCodeByFilter) | **GET** /beta/itemLowstockCode/search | Search itemLowstockCodes by filter
*infoplus.ItemLowstockCodeApi* | [**getItemLowstockCodeById**](docs/ItemLowstockCodeApi.md#getItemLowstockCodeById) | **GET** /beta/itemLowstockCode/{itemLowstockCodeId} | Get an itemLowstockCode by id
*infoplus.ItemLowstockCodeApi* | [**getItemLowstockCodeFiles**](docs/ItemLowstockCodeApi.md#getItemLowstockCodeFiles) | **GET** /beta/itemLowstockCode/{itemLowstockCodeId}/file | Get the files for an itemLowstockCode.
*infoplus.ItemLowstockCodeApi* | [**getItemLowstockCodeTags**](docs/ItemLowstockCodeApi.md#getItemLowstockCodeTags) | **GET** /beta/itemLowstockCode/{itemLowstockCodeId}/tag | Get the tags for an itemLowstockCode.
*infoplus.ItemLowstockCodeApi* | [**updateItemLowstockCode**](docs/ItemLowstockCodeApi.md#updateItemLowstockCode) | **PUT** /beta/itemLowstockCode | Update an itemLowstockCode
*infoplus.ItemProductCodeApi* | [**addItemProductCode**](docs/ItemProductCodeApi.md#addItemProductCode) | **POST** /beta/itemProductCode | Create an itemProductCode
*infoplus.ItemProductCodeApi* | [**addItemProductCodeAudit**](docs/ItemProductCodeApi.md#addItemProductCodeAudit) | **PUT** /beta/itemProductCode/{itemProductCodeId}/audit/{itemProductCodeAudit} | Add new audit for an itemProductCode
*infoplus.ItemProductCodeApi* | [**addItemProductCodeFile**](docs/ItemProductCodeApi.md#addItemProductCodeFile) | **POST** /beta/itemProductCode/{itemProductCodeId}/file/{fileName} | Attach a file to an itemProductCode
*infoplus.ItemProductCodeApi* | [**addItemProductCodeFileByURL**](docs/ItemProductCodeApi.md#addItemProductCodeFileByURL) | **POST** /beta/itemProductCode/{itemProductCodeId}/file | Attach a file to an itemProductCode by URL.
*infoplus.ItemProductCodeApi* | [**addItemProductCodeTag**](docs/ItemProductCodeApi.md#addItemProductCodeTag) | **PUT** /beta/itemProductCode/{itemProductCodeId}/tag/{itemProductCodeTag} | Add new tags for an itemProductCode.
*infoplus.ItemProductCodeApi* | [**deleteItemProductCode**](docs/ItemProductCodeApi.md#deleteItemProductCode) | **DELETE** /beta/itemProductCode/{itemProductCodeId} | Delete an itemProductCode
*infoplus.ItemProductCodeApi* | [**deleteItemProductCodeFile**](docs/ItemProductCodeApi.md#deleteItemProductCodeFile) | **DELETE** /beta/itemProductCode/{itemProductCodeId}/file/{fileId} | Delete a file for an itemProductCode.
*infoplus.ItemProductCodeApi* | [**deleteItemProductCodeTag**](docs/ItemProductCodeApi.md#deleteItemProductCodeTag) | **DELETE** /beta/itemProductCode/{itemProductCodeId}/tag/{itemProductCodeTag} | Delete a tag for an itemProductCode.
*infoplus.ItemProductCodeApi* | [**getDuplicateItemProductCodeById**](docs/ItemProductCodeApi.md#getDuplicateItemProductCodeById) | **GET** /beta/itemProductCode/duplicate/{itemProductCodeId} | Get a duplicated an itemProductCode by id
*infoplus.ItemProductCodeApi* | [**getItemProductCodeByFilter**](docs/ItemProductCodeApi.md#getItemProductCodeByFilter) | **GET** /beta/itemProductCode/search | Search itemProductCodes by filter
*infoplus.ItemProductCodeApi* | [**getItemProductCodeById**](docs/ItemProductCodeApi.md#getItemProductCodeById) | **GET** /beta/itemProductCode/{itemProductCodeId} | Get an itemProductCode by id
*infoplus.ItemProductCodeApi* | [**getItemProductCodeFiles**](docs/ItemProductCodeApi.md#getItemProductCodeFiles) | **GET** /beta/itemProductCode/{itemProductCodeId}/file | Get the files for an itemProductCode.
*infoplus.ItemProductCodeApi* | [**getItemProductCodeTags**](docs/ItemProductCodeApi.md#getItemProductCodeTags) | **GET** /beta/itemProductCode/{itemProductCodeId}/tag | Get the tags for an itemProductCode.
*infoplus.ItemProductCodeApi* | [**updateItemProductCode**](docs/ItemProductCodeApi.md#updateItemProductCode) | **PUT** /beta/itemProductCode | Update an itemProductCode
*infoplus.ItemReceiptApi* | [**addItemReceiptAudit**](docs/ItemReceiptApi.md#addItemReceiptAudit) | **PUT** /beta/itemReceipt/{itemReceiptId}/audit/{itemReceiptAudit} | Add new audit for an itemReceipt
*infoplus.ItemReceiptApi* | [**addItemReceiptFile**](docs/ItemReceiptApi.md#addItemReceiptFile) | **POST** /beta/itemReceipt/{itemReceiptId}/file/{fileName} | Attach a file to an itemReceipt
*infoplus.ItemReceiptApi* | [**addItemReceiptFileByURL**](docs/ItemReceiptApi.md#addItemReceiptFileByURL) | **POST** /beta/itemReceipt/{itemReceiptId}/file | Attach a file to an itemReceipt by URL.
*infoplus.ItemReceiptApi* | [**addItemReceiptTag**](docs/ItemReceiptApi.md#addItemReceiptTag) | **PUT** /beta/itemReceipt/{itemReceiptId}/tag/{itemReceiptTag} | Add new tags for an itemReceipt.
*infoplus.ItemReceiptApi* | [**deleteItemReceiptFile**](docs/ItemReceiptApi.md#deleteItemReceiptFile) | **DELETE** /beta/itemReceipt/{itemReceiptId}/file/{fileId} | Delete a file for an itemReceipt.
*infoplus.ItemReceiptApi* | [**deleteItemReceiptTag**](docs/ItemReceiptApi.md#deleteItemReceiptTag) | **DELETE** /beta/itemReceipt/{itemReceiptId}/tag/{itemReceiptTag} | Delete a tag for an itemReceipt.
*infoplus.ItemReceiptApi* | [**getDuplicateItemReceiptById**](docs/ItemReceiptApi.md#getDuplicateItemReceiptById) | **GET** /beta/itemReceipt/duplicate/{itemReceiptId} | Get a duplicated an itemReceipt by id
*infoplus.ItemReceiptApi* | [**getItemReceiptByFilter**](docs/ItemReceiptApi.md#getItemReceiptByFilter) | **GET** /beta/itemReceipt/search | Search itemReceipts by filter
*infoplus.ItemReceiptApi* | [**getItemReceiptById**](docs/ItemReceiptApi.md#getItemReceiptById) | **GET** /beta/itemReceipt/{itemReceiptId} | Get an itemReceipt by id
*infoplus.ItemReceiptApi* | [**getItemReceiptFiles**](docs/ItemReceiptApi.md#getItemReceiptFiles) | **GET** /beta/itemReceipt/{itemReceiptId}/file | Get the files for an itemReceipt.
*infoplus.ItemReceiptApi* | [**getItemReceiptTags**](docs/ItemReceiptApi.md#getItemReceiptTags) | **GET** /beta/itemReceipt/{itemReceiptId}/tag | Get the tags for an itemReceipt.
*infoplus.ItemReceiptApi* | [**updateItemReceipt**](docs/ItemReceiptApi.md#updateItemReceipt) | **PUT** /beta/itemReceipt | Update an itemReceipt
*infoplus.ItemReceiptApi* | [**updateItemReceiptCustomFields**](docs/ItemReceiptApi.md#updateItemReceiptCustomFields) | **PUT** /beta/itemReceipt/customFields | Update an itemReceipt custom fields
*infoplus.ItemReceiptActivityApi* | [**addItemReceiptActivity**](docs/ItemReceiptActivityApi.md#addItemReceiptActivity) | **POST** /beta/itemReceiptActivity | Create an itemReceiptActivity
*infoplus.ItemReceiptActivityApi* | [**addItemReceiptActivityAudit**](docs/ItemReceiptActivityApi.md#addItemReceiptActivityAudit) | **PUT** /beta/itemReceiptActivity/{itemReceiptActivityId}/audit/{itemReceiptActivityAudit} | Add new audit for an itemReceiptActivity
*infoplus.ItemReceiptActivityApi* | [**addItemReceiptActivityFile**](docs/ItemReceiptActivityApi.md#addItemReceiptActivityFile) | **POST** /beta/itemReceiptActivity/{itemReceiptActivityId}/file/{fileName} | Attach a file to an itemReceiptActivity
*infoplus.ItemReceiptActivityApi* | [**addItemReceiptActivityFileByURL**](docs/ItemReceiptActivityApi.md#addItemReceiptActivityFileByURL) | **POST** /beta/itemReceiptActivity/{itemReceiptActivityId}/file | Attach a file to an itemReceiptActivity by URL.
*infoplus.ItemReceiptActivityApi* | [**addItemReceiptActivityTag**](docs/ItemReceiptActivityApi.md#addItemReceiptActivityTag) | **PUT** /beta/itemReceiptActivity/{itemReceiptActivityId}/tag/{itemReceiptActivityTag} | Add new tags for an itemReceiptActivity.
*infoplus.ItemReceiptActivityApi* | [**deleteItemReceiptActivity**](docs/ItemReceiptActivityApi.md#deleteItemReceiptActivity) | **DELETE** /beta/itemReceiptActivity/{itemReceiptActivityId} | Delete an itemReceiptActivity
*infoplus.ItemReceiptActivityApi* | [**deleteItemReceiptActivityFile**](docs/ItemReceiptActivityApi.md#deleteItemReceiptActivityFile) | **DELETE** /beta/itemReceiptActivity/{itemReceiptActivityId}/file/{fileId} | Delete a file for an itemReceiptActivity.
*infoplus.ItemReceiptActivityApi* | [**deleteItemReceiptActivityTag**](docs/ItemReceiptActivityApi.md#deleteItemReceiptActivityTag) | **DELETE** /beta/itemReceiptActivity/{itemReceiptActivityId}/tag/{itemReceiptActivityTag} | Delete a tag for an itemReceiptActivity.
*infoplus.ItemReceiptActivityApi* | [**getDuplicateItemReceiptActivityById**](docs/ItemReceiptActivityApi.md#getDuplicateItemReceiptActivityById) | **GET** /beta/itemReceiptActivity/duplicate/{itemReceiptActivityId} | Get a duplicated an itemReceiptActivity by id
*infoplus.ItemReceiptActivityApi* | [**getItemReceiptActivityByFilter**](docs/ItemReceiptActivityApi.md#getItemReceiptActivityByFilter) | **GET** /beta/itemReceiptActivity/search | Search itemReceiptActivitys by filter
*infoplus.ItemReceiptActivityApi* | [**getItemReceiptActivityById**](docs/ItemReceiptActivityApi.md#getItemReceiptActivityById) | **GET** /beta/itemReceiptActivity/{itemReceiptActivityId} | Get an itemReceiptActivity by id
*infoplus.ItemReceiptActivityApi* | [**getItemReceiptActivityFiles**](docs/ItemReceiptActivityApi.md#getItemReceiptActivityFiles) | **GET** /beta/itemReceiptActivity/{itemReceiptActivityId}/file | Get the files for an itemReceiptActivity.
*infoplus.ItemReceiptActivityApi* | [**getItemReceiptActivityTags**](docs/ItemReceiptActivityApi.md#getItemReceiptActivityTags) | **GET** /beta/itemReceiptActivity/{itemReceiptActivityId}/tag | Get the tags for an itemReceiptActivity.
*infoplus.ItemReceiptActivityApi* | [**updateItemReceiptActivity**](docs/ItemReceiptActivityApi.md#updateItemReceiptActivity) | **PUT** /beta/itemReceiptActivity | Update an itemReceiptActivity
*infoplus.ItemSectorApi* | [**addItemSector**](docs/ItemSectorApi.md#addItemSector) | **POST** /beta/itemSector | Create an itemSector
*infoplus.ItemSectorApi* | [**addItemSectorAudit**](docs/ItemSectorApi.md#addItemSectorAudit) | **PUT** /beta/itemSector/{itemSectorId}/audit/{itemSectorAudit} | Add new audit for an itemSector
*infoplus.ItemSectorApi* | [**addItemSectorFile**](docs/ItemSectorApi.md#addItemSectorFile) | **POST** /beta/itemSector/{itemSectorId}/file/{fileName} | Attach a file to an itemSector
*infoplus.ItemSectorApi* | [**addItemSectorFileByURL**](docs/ItemSectorApi.md#addItemSectorFileByURL) | **POST** /beta/itemSector/{itemSectorId}/file | Attach a file to an itemSector by URL.
*infoplus.ItemSectorApi* | [**addItemSectorTag**](docs/ItemSectorApi.md#addItemSectorTag) | **PUT** /beta/itemSector/{itemSectorId}/tag/{itemSectorTag} | Add new tags for an itemSector.
*infoplus.ItemSectorApi* | [**deleteItemSector**](docs/ItemSectorApi.md#deleteItemSector) | **DELETE** /beta/itemSector/{itemSectorId} | Delete an itemSector
*infoplus.ItemSectorApi* | [**deleteItemSectorFile**](docs/ItemSectorApi.md#deleteItemSectorFile) | **DELETE** /beta/itemSector/{itemSectorId}/file/{fileId} | Delete a file for an itemSector.
*infoplus.ItemSectorApi* | [**deleteItemSectorTag**](docs/ItemSectorApi.md#deleteItemSectorTag) | **DELETE** /beta/itemSector/{itemSectorId}/tag/{itemSectorTag} | Delete a tag for an itemSector.
*infoplus.ItemSectorApi* | [**getDuplicateItemSectorById**](docs/ItemSectorApi.md#getDuplicateItemSectorById) | **GET** /beta/itemSector/duplicate/{itemSectorId} | Get a duplicated an itemSector by id
*infoplus.ItemSectorApi* | [**getItemSectorByFilter**](docs/ItemSectorApi.md#getItemSectorByFilter) | **GET** /beta/itemSector/search | Search itemSectors by filter
*infoplus.ItemSectorApi* | [**getItemSectorById**](docs/ItemSectorApi.md#getItemSectorById) | **GET** /beta/itemSector/{itemSectorId} | Get an itemSector by id
*infoplus.ItemSectorApi* | [**getItemSectorFiles**](docs/ItemSectorApi.md#getItemSectorFiles) | **GET** /beta/itemSector/{itemSectorId}/file | Get the files for an itemSector.
*infoplus.ItemSectorApi* | [**getItemSectorTags**](docs/ItemSectorApi.md#getItemSectorTags) | **GET** /beta/itemSector/{itemSectorId}/tag | Get the tags for an itemSector.
*infoplus.ItemSectorApi* | [**updateItemSector**](docs/ItemSectorApi.md#updateItemSector) | **PUT** /beta/itemSector | Update an itemSector
*infoplus.ItemSerialApi* | [**addItemSerial**](docs/ItemSerialApi.md#addItemSerial) | **POST** /beta/itemSerial | Create an itemSerial
*infoplus.ItemSerialApi* | [**addItemSerialAudit**](docs/ItemSerialApi.md#addItemSerialAudit) | **PUT** /beta/itemSerial/{itemSerialId}/audit/{itemSerialAudit} | Add new audit for an itemSerial
*infoplus.ItemSerialApi* | [**addItemSerialFile**](docs/ItemSerialApi.md#addItemSerialFile) | **POST** /beta/itemSerial/{itemSerialId}/file/{fileName} | Attach a file to an itemSerial
*infoplus.ItemSerialApi* | [**addItemSerialFileByURL**](docs/ItemSerialApi.md#addItemSerialFileByURL) | **POST** /beta/itemSerial/{itemSerialId}/file | Attach a file to an itemSerial by URL.
*infoplus.ItemSerialApi* | [**addItemSerialTag**](docs/ItemSerialApi.md#addItemSerialTag) | **PUT** /beta/itemSerial/{itemSerialId}/tag/{itemSerialTag} | Add new tags for an itemSerial.
*infoplus.ItemSerialApi* | [**deleteItemSerial**](docs/ItemSerialApi.md#deleteItemSerial) | **DELETE** /beta/itemSerial/{itemSerialId} | Delete an itemSerial
*infoplus.ItemSerialApi* | [**deleteItemSerialFile**](docs/ItemSerialApi.md#deleteItemSerialFile) | **DELETE** /beta/itemSerial/{itemSerialId}/file/{fileId} | Delete a file for an itemSerial.
*infoplus.ItemSerialApi* | [**deleteItemSerialTag**](docs/ItemSerialApi.md#deleteItemSerialTag) | **DELETE** /beta/itemSerial/{itemSerialId}/tag/{itemSerialTag} | Delete a tag for an itemSerial.
*infoplus.ItemSerialApi* | [**getDuplicateItemSerialById**](docs/ItemSerialApi.md#getDuplicateItemSerialById) | **GET** /beta/itemSerial/duplicate/{itemSerialId} | Get a duplicated an itemSerial by id
*infoplus.ItemSerialApi* | [**getItemSerialByFilter**](docs/ItemSerialApi.md#getItemSerialByFilter) | **GET** /beta/itemSerial/search | Search itemSerials by filter
*infoplus.ItemSerialApi* | [**getItemSerialById**](docs/ItemSerialApi.md#getItemSerialById) | **GET** /beta/itemSerial/{itemSerialId} | Get an itemSerial by id
*infoplus.ItemSerialApi* | [**getItemSerialFiles**](docs/ItemSerialApi.md#getItemSerialFiles) | **GET** /beta/itemSerial/{itemSerialId}/file | Get the files for an itemSerial.
*infoplus.ItemSerialApi* | [**getItemSerialTags**](docs/ItemSerialApi.md#getItemSerialTags) | **GET** /beta/itemSerial/{itemSerialId}/tag | Get the tags for an itemSerial.
*infoplus.ItemSerialApi* | [**updateItemSerial**](docs/ItemSerialApi.md#updateItemSerial) | **PUT** /beta/itemSerial | Update an itemSerial
*infoplus.ItemSerialSchemeApi* | [**addItemSerialScheme**](docs/ItemSerialSchemeApi.md#addItemSerialScheme) | **POST** /beta/itemSerialScheme | Create an itemSerialScheme
*infoplus.ItemSerialSchemeApi* | [**addItemSerialSchemeAudit**](docs/ItemSerialSchemeApi.md#addItemSerialSchemeAudit) | **PUT** /beta/itemSerialScheme/{itemSerialSchemeId}/audit/{itemSerialSchemeAudit} | Add new audit for an itemSerialScheme
*infoplus.ItemSerialSchemeApi* | [**addItemSerialSchemeFile**](docs/ItemSerialSchemeApi.md#addItemSerialSchemeFile) | **POST** /beta/itemSerialScheme/{itemSerialSchemeId}/file/{fileName} | Attach a file to an itemSerialScheme
*infoplus.ItemSerialSchemeApi* | [**addItemSerialSchemeFileByURL**](docs/ItemSerialSchemeApi.md#addItemSerialSchemeFileByURL) | **POST** /beta/itemSerialScheme/{itemSerialSchemeId}/file | Attach a file to an itemSerialScheme by URL.
*infoplus.ItemSerialSchemeApi* | [**addItemSerialSchemeTag**](docs/ItemSerialSchemeApi.md#addItemSerialSchemeTag) | **PUT** /beta/itemSerialScheme/{itemSerialSchemeId}/tag/{itemSerialSchemeTag} | Add new tags for an itemSerialScheme.
*infoplus.ItemSerialSchemeApi* | [**deleteItemSerialScheme**](docs/ItemSerialSchemeApi.md#deleteItemSerialScheme) | **DELETE** /beta/itemSerialScheme/{itemSerialSchemeId} | Delete an itemSerialScheme
*infoplus.ItemSerialSchemeApi* | [**deleteItemSerialSchemeFile**](docs/ItemSerialSchemeApi.md#deleteItemSerialSchemeFile) | **DELETE** /beta/itemSerialScheme/{itemSerialSchemeId}/file/{fileId} | Delete a file for an itemSerialScheme.
*infoplus.ItemSerialSchemeApi* | [**deleteItemSerialSchemeTag**](docs/ItemSerialSchemeApi.md#deleteItemSerialSchemeTag) | **DELETE** /beta/itemSerialScheme/{itemSerialSchemeId}/tag/{itemSerialSchemeTag} | Delete a tag for an itemSerialScheme.
*infoplus.ItemSerialSchemeApi* | [**getDuplicateItemSerialSchemeById**](docs/ItemSerialSchemeApi.md#getDuplicateItemSerialSchemeById) | **GET** /beta/itemSerialScheme/duplicate/{itemSerialSchemeId} | Get a duplicated an itemSerialScheme by id
*infoplus.ItemSerialSchemeApi* | [**getItemSerialSchemeByFilter**](docs/ItemSerialSchemeApi.md#getItemSerialSchemeByFilter) | **GET** /beta/itemSerialScheme/search | Search itemSerialSchemes by filter
*infoplus.ItemSerialSchemeApi* | [**getItemSerialSchemeById**](docs/ItemSerialSchemeApi.md#getItemSerialSchemeById) | **GET** /beta/itemSerialScheme/{itemSerialSchemeId} | Get an itemSerialScheme by id
*infoplus.ItemSerialSchemeApi* | [**getItemSerialSchemeFiles**](docs/ItemSerialSchemeApi.md#getItemSerialSchemeFiles) | **GET** /beta/itemSerialScheme/{itemSerialSchemeId}/file | Get the files for an itemSerialScheme.
*infoplus.ItemSerialSchemeApi* | [**getItemSerialSchemeTags**](docs/ItemSerialSchemeApi.md#getItemSerialSchemeTags) | **GET** /beta/itemSerialScheme/{itemSerialSchemeId}/tag | Get the tags for an itemSerialScheme.
*infoplus.ItemSerialSchemeApi* | [**updateItemSerialScheme**](docs/ItemSerialSchemeApi.md#updateItemSerialScheme) | **PUT** /beta/itemSerialScheme | Update an itemSerialScheme
*infoplus.ItemSubCategoryApi* | [**addItemSubCategory**](docs/ItemSubCategoryApi.md#addItemSubCategory) | **POST** /beta/itemSubCategory | Create an itemSubCategory
*infoplus.ItemSubCategoryApi* | [**addItemSubCategoryAudit**](docs/ItemSubCategoryApi.md#addItemSubCategoryAudit) | **PUT** /beta/itemSubCategory/{itemSubCategoryId}/audit/{itemSubCategoryAudit} | Add new audit for an itemSubCategory
*infoplus.ItemSubCategoryApi* | [**addItemSubCategoryFile**](docs/ItemSubCategoryApi.md#addItemSubCategoryFile) | **POST** /beta/itemSubCategory/{itemSubCategoryId}/file/{fileName} | Attach a file to an itemSubCategory
*infoplus.ItemSubCategoryApi* | [**addItemSubCategoryFileByURL**](docs/ItemSubCategoryApi.md#addItemSubCategoryFileByURL) | **POST** /beta/itemSubCategory/{itemSubCategoryId}/file | Attach a file to an itemSubCategory by URL.
*infoplus.ItemSubCategoryApi* | [**addItemSubCategoryTag**](docs/ItemSubCategoryApi.md#addItemSubCategoryTag) | **PUT** /beta/itemSubCategory/{itemSubCategoryId}/tag/{itemSubCategoryTag} | Add new tags for an itemSubCategory.
*infoplus.ItemSubCategoryApi* | [**deleteItemSubCategory**](docs/ItemSubCategoryApi.md#deleteItemSubCategory) | **DELETE** /beta/itemSubCategory/{itemSubCategoryId} | Delete an itemSubCategory
*infoplus.ItemSubCategoryApi* | [**deleteItemSubCategoryFile**](docs/ItemSubCategoryApi.md#deleteItemSubCategoryFile) | **DELETE** /beta/itemSubCategory/{itemSubCategoryId}/file/{fileId} | Delete a file for an itemSubCategory.
*infoplus.ItemSubCategoryApi* | [**deleteItemSubCategoryTag**](docs/ItemSubCategoryApi.md#deleteItemSubCategoryTag) | **DELETE** /beta/itemSubCategory/{itemSubCategoryId}/tag/{itemSubCategoryTag} | Delete a tag for an itemSubCategory.
*infoplus.ItemSubCategoryApi* | [**getDuplicateItemSubCategoryById**](docs/ItemSubCategoryApi.md#getDuplicateItemSubCategoryById) | **GET** /beta/itemSubCategory/duplicate/{itemSubCategoryId} | Get a duplicated an itemSubCategory by id
*infoplus.ItemSubCategoryApi* | [**getItemSubCategoryByFilter**](docs/ItemSubCategoryApi.md#getItemSubCategoryByFilter) | **GET** /beta/itemSubCategory/search | Search itemSubCategorys by filter
*infoplus.ItemSubCategoryApi* | [**getItemSubCategoryById**](docs/ItemSubCategoryApi.md#getItemSubCategoryById) | **GET** /beta/itemSubCategory/{itemSubCategoryId} | Get an itemSubCategory by id
*infoplus.ItemSubCategoryApi* | [**getItemSubCategoryFiles**](docs/ItemSubCategoryApi.md#getItemSubCategoryFiles) | **GET** /beta/itemSubCategory/{itemSubCategoryId}/file | Get the files for an itemSubCategory.
*infoplus.ItemSubCategoryApi* | [**getItemSubCategoryTags**](docs/ItemSubCategoryApi.md#getItemSubCategoryTags) | **GET** /beta/itemSubCategory/{itemSubCategoryId}/tag | Get the tags for an itemSubCategory.
*infoplus.ItemSubCategoryApi* | [**updateItemSubCategory**](docs/ItemSubCategoryApi.md#updateItemSubCategory) | **PUT** /beta/itemSubCategory | Update an itemSubCategory
*infoplus.ItemSummaryCodeApi* | [**addItemSummaryCode**](docs/ItemSummaryCodeApi.md#addItemSummaryCode) | **POST** /beta/itemSummaryCode | Create an itemSummaryCode
*infoplus.ItemSummaryCodeApi* | [**addItemSummaryCodeAudit**](docs/ItemSummaryCodeApi.md#addItemSummaryCodeAudit) | **PUT** /beta/itemSummaryCode/{itemSummaryCodeId}/audit/{itemSummaryCodeAudit} | Add new audit for an itemSummaryCode
*infoplus.ItemSummaryCodeApi* | [**addItemSummaryCodeFile**](docs/ItemSummaryCodeApi.md#addItemSummaryCodeFile) | **POST** /beta/itemSummaryCode/{itemSummaryCodeId}/file/{fileName} | Attach a file to an itemSummaryCode
*infoplus.ItemSummaryCodeApi* | [**addItemSummaryCodeFileByURL**](docs/ItemSummaryCodeApi.md#addItemSummaryCodeFileByURL) | **POST** /beta/itemSummaryCode/{itemSummaryCodeId}/file | Attach a file to an itemSummaryCode by URL.
*infoplus.ItemSummaryCodeApi* | [**addItemSummaryCodeTag**](docs/ItemSummaryCodeApi.md#addItemSummaryCodeTag) | **PUT** /beta/itemSummaryCode/{itemSummaryCodeId}/tag/{itemSummaryCodeTag} | Add new tags for an itemSummaryCode.
*infoplus.ItemSummaryCodeApi* | [**deleteItemSummaryCode**](docs/ItemSummaryCodeApi.md#deleteItemSummaryCode) | **DELETE** /beta/itemSummaryCode/{itemSummaryCodeId} | Delete an itemSummaryCode
*infoplus.ItemSummaryCodeApi* | [**deleteItemSummaryCodeFile**](docs/ItemSummaryCodeApi.md#deleteItemSummaryCodeFile) | **DELETE** /beta/itemSummaryCode/{itemSummaryCodeId}/file/{fileId} | Delete a file for an itemSummaryCode.
*infoplus.ItemSummaryCodeApi* | [**deleteItemSummaryCodeTag**](docs/ItemSummaryCodeApi.md#deleteItemSummaryCodeTag) | **DELETE** /beta/itemSummaryCode/{itemSummaryCodeId}/tag/{itemSummaryCodeTag} | Delete a tag for an itemSummaryCode.
*infoplus.ItemSummaryCodeApi* | [**getDuplicateItemSummaryCodeById**](docs/ItemSummaryCodeApi.md#getDuplicateItemSummaryCodeById) | **GET** /beta/itemSummaryCode/duplicate/{itemSummaryCodeId} | Get a duplicated an itemSummaryCode by id
*infoplus.ItemSummaryCodeApi* | [**getItemSummaryCodeByFilter**](docs/ItemSummaryCodeApi.md#getItemSummaryCodeByFilter) | **GET** /beta/itemSummaryCode/search | Search itemSummaryCodes by filter
*infoplus.ItemSummaryCodeApi* | [**getItemSummaryCodeById**](docs/ItemSummaryCodeApi.md#getItemSummaryCodeById) | **GET** /beta/itemSummaryCode/{itemSummaryCodeId} | Get an itemSummaryCode by id
*infoplus.ItemSummaryCodeApi* | [**getItemSummaryCodeFiles**](docs/ItemSummaryCodeApi.md#getItemSummaryCodeFiles) | **GET** /beta/itemSummaryCode/{itemSummaryCodeId}/file | Get the files for an itemSummaryCode.
*infoplus.ItemSummaryCodeApi* | [**getItemSummaryCodeTags**](docs/ItemSummaryCodeApi.md#getItemSummaryCodeTags) | **GET** /beta/itemSummaryCode/{itemSummaryCodeId}/tag | Get the tags for an itemSummaryCode.
*infoplus.ItemSummaryCodeApi* | [**updateItemSummaryCode**](docs/ItemSummaryCodeApi.md#updateItemSummaryCode) | **PUT** /beta/itemSummaryCode | Update an itemSummaryCode
*infoplus.JobApi* | [**addJob**](docs/JobApi.md#addJob) | **POST** /beta/job | Create a job
*infoplus.JobApi* | [**addJobAudit**](docs/JobApi.md#addJobAudit) | **PUT** /beta/job/{jobId}/audit/{jobAudit} | Add new audit for a job
*infoplus.JobApi* | [**addJobFile**](docs/JobApi.md#addJobFile) | **POST** /beta/job/{jobId}/file/{fileName} | Attach a file to a job
*infoplus.JobApi* | [**addJobFileByURL**](docs/JobApi.md#addJobFileByURL) | **POST** /beta/job/{jobId}/file | Attach a file to a job by URL.
*infoplus.JobApi* | [**addJobTag**](docs/JobApi.md#addJobTag) | **PUT** /beta/job/{jobId}/tag/{jobTag} | Add new tags for a job.
*infoplus.JobApi* | [**deleteJob**](docs/JobApi.md#deleteJob) | **DELETE** /beta/job/{jobId} | Delete a job
*infoplus.JobApi* | [**deleteJobFile**](docs/JobApi.md#deleteJobFile) | **DELETE** /beta/job/{jobId}/file/{fileId} | Delete a file for a job.
*infoplus.JobApi* | [**deleteJobTag**](docs/JobApi.md#deleteJobTag) | **DELETE** /beta/job/{jobId}/tag/{jobTag} | Delete a tag for a job.
*infoplus.JobApi* | [**executeJob**](docs/JobApi.md#executeJob) | **POST** /beta/job/executeJob | Run the ExecuteJob process.
*infoplus.JobApi* | [**getDuplicateJobById**](docs/JobApi.md#getDuplicateJobById) | **GET** /beta/job/duplicate/{jobId} | Get a duplicated a job by id
*infoplus.JobApi* | [**getJobByFilter**](docs/JobApi.md#getJobByFilter) | **GET** /beta/job/search | Search jobs by filter
*infoplus.JobApi* | [**getJobById**](docs/JobApi.md#getJobById) | **GET** /beta/job/{jobId} | Get a job by id
*infoplus.JobApi* | [**getJobFiles**](docs/JobApi.md#getJobFiles) | **GET** /beta/job/{jobId}/file | Get the files for a job.
*infoplus.JobApi* | [**getJobTags**](docs/JobApi.md#getJobTags) | **GET** /beta/job/{jobId}/tag | Get the tags for a job.
*infoplus.JobApi* | [**updateJob**](docs/JobApi.md#updateJob) | **PUT** /beta/job | Update a job
*infoplus.JobApi* | [**updateJobCustomFields**](docs/JobApi.md#updateJobCustomFields) | **PUT** /beta/job/customFields | Update a job custom fields
*infoplus.JobRecipeApi* | [**addJobRecipe**](docs/JobRecipeApi.md#addJobRecipe) | **POST** /beta/jobRecipe | Create a jobRecipe
*infoplus.JobRecipeApi* | [**addJobRecipeAudit**](docs/JobRecipeApi.md#addJobRecipeAudit) | **PUT** /beta/jobRecipe/{jobRecipeId}/audit/{jobRecipeAudit} | Add new audit for a jobRecipe
*infoplus.JobRecipeApi* | [**addJobRecipeFile**](docs/JobRecipeApi.md#addJobRecipeFile) | **POST** /beta/jobRecipe/{jobRecipeId}/file/{fileName} | Attach a file to a jobRecipe
*infoplus.JobRecipeApi* | [**addJobRecipeFileByURL**](docs/JobRecipeApi.md#addJobRecipeFileByURL) | **POST** /beta/jobRecipe/{jobRecipeId}/file | Attach a file to a jobRecipe by URL.
*infoplus.JobRecipeApi* | [**addJobRecipeTag**](docs/JobRecipeApi.md#addJobRecipeTag) | **PUT** /beta/jobRecipe/{jobRecipeId}/tag/{jobRecipeTag} | Add new tags for a jobRecipe.
*infoplus.JobRecipeApi* | [**deleteJobRecipe**](docs/JobRecipeApi.md#deleteJobRecipe) | **DELETE** /beta/jobRecipe/{jobRecipeId} | Delete a jobRecipe
*infoplus.JobRecipeApi* | [**deleteJobRecipeFile**](docs/JobRecipeApi.md#deleteJobRecipeFile) | **DELETE** /beta/jobRecipe/{jobRecipeId}/file/{fileId} | Delete a file for a jobRecipe.
*infoplus.JobRecipeApi* | [**deleteJobRecipeTag**](docs/JobRecipeApi.md#deleteJobRecipeTag) | **DELETE** /beta/jobRecipe/{jobRecipeId}/tag/{jobRecipeTag} | Delete a tag for a jobRecipe.
*infoplus.JobRecipeApi* | [**getDuplicateJobRecipeById**](docs/JobRecipeApi.md#getDuplicateJobRecipeById) | **GET** /beta/jobRecipe/duplicate/{jobRecipeId} | Get a duplicated a jobRecipe by id
*infoplus.JobRecipeApi* | [**getJobRecipeByFilter**](docs/JobRecipeApi.md#getJobRecipeByFilter) | **GET** /beta/jobRecipe/search | Search jobRecipes by filter
*infoplus.JobRecipeApi* | [**getJobRecipeById**](docs/JobRecipeApi.md#getJobRecipeById) | **GET** /beta/jobRecipe/{jobRecipeId} | Get a jobRecipe by id
*infoplus.JobRecipeApi* | [**getJobRecipeFiles**](docs/JobRecipeApi.md#getJobRecipeFiles) | **GET** /beta/jobRecipe/{jobRecipeId}/file | Get the files for a jobRecipe.
*infoplus.JobRecipeApi* | [**getJobRecipeTags**](docs/JobRecipeApi.md#getJobRecipeTags) | **GET** /beta/jobRecipe/{jobRecipeId}/tag | Get the tags for a jobRecipe.
*infoplus.JobRecipeApi* | [**updateJobRecipe**](docs/JobRecipeApi.md#updateJobRecipe) | **PUT** /beta/jobRecipe | Update a jobRecipe
*infoplus.JobRecipeApi* | [**updateJobRecipeCustomFields**](docs/JobRecipeApi.md#updateJobRecipeCustomFields) | **PUT** /beta/jobRecipe/customFields | Update a jobRecipe custom fields
*infoplus.JobTimeApi* | [**addJobTime**](docs/JobTimeApi.md#addJobTime) | **POST** /beta/jobTime | Create a jobTime
*infoplus.JobTimeApi* | [**addJobTimeAudit**](docs/JobTimeApi.md#addJobTimeAudit) | **PUT** /beta/jobTime/{jobTimeId}/audit/{jobTimeAudit} | Add new audit for a jobTime
*infoplus.JobTimeApi* | [**addJobTimeFile**](docs/JobTimeApi.md#addJobTimeFile) | **POST** /beta/jobTime/{jobTimeId}/file/{fileName} | Attach a file to a jobTime
*infoplus.JobTimeApi* | [**addJobTimeFileByURL**](docs/JobTimeApi.md#addJobTimeFileByURL) | **POST** /beta/jobTime/{jobTimeId}/file | Attach a file to a jobTime by URL.
*infoplus.JobTimeApi* | [**addJobTimeTag**](docs/JobTimeApi.md#addJobTimeTag) | **PUT** /beta/jobTime/{jobTimeId}/tag/{jobTimeTag} | Add new tags for a jobTime.
*infoplus.JobTimeApi* | [**deleteJobTime**](docs/JobTimeApi.md#deleteJobTime) | **DELETE** /beta/jobTime/{jobTimeId} | Delete a jobTime
*infoplus.JobTimeApi* | [**deleteJobTimeFile**](docs/JobTimeApi.md#deleteJobTimeFile) | **DELETE** /beta/jobTime/{jobTimeId}/file/{fileId} | Delete a file for a jobTime.
*infoplus.JobTimeApi* | [**deleteJobTimeTag**](docs/JobTimeApi.md#deleteJobTimeTag) | **DELETE** /beta/jobTime/{jobTimeId}/tag/{jobTimeTag} | Delete a tag for a jobTime.
*infoplus.JobTimeApi* | [**getDuplicateJobTimeById**](docs/JobTimeApi.md#getDuplicateJobTimeById) | **GET** /beta/jobTime/duplicate/{jobTimeId} | Get a duplicated a jobTime by id
*infoplus.JobTimeApi* | [**getJobTimeByFilter**](docs/JobTimeApi.md#getJobTimeByFilter) | **GET** /beta/jobTime/search | Search jobTimes by filter
*infoplus.JobTimeApi* | [**getJobTimeById**](docs/JobTimeApi.md#getJobTimeById) | **GET** /beta/jobTime/{jobTimeId} | Get a jobTime by id
*infoplus.JobTimeApi* | [**getJobTimeFiles**](docs/JobTimeApi.md#getJobTimeFiles) | **GET** /beta/jobTime/{jobTimeId}/file | Get the files for a jobTime.
*infoplus.JobTimeApi* | [**getJobTimeTags**](docs/JobTimeApi.md#getJobTimeTags) | **GET** /beta/jobTime/{jobTimeId}/tag | Get the tags for a jobTime.
*infoplus.JobTimeApi* | [**updateJobTime**](docs/JobTimeApi.md#updateJobTime) | **PUT** /beta/jobTime | Update a jobTime
*infoplus.JobTimeApi* | [**updateJobTimeCustomFields**](docs/JobTimeApi.md#updateJobTimeCustomFields) | **PUT** /beta/jobTime/customFields | Update a jobTime custom fields
*infoplus.JobTimeActivityApi* | [**addJobTimeActivity**](docs/JobTimeActivityApi.md#addJobTimeActivity) | **POST** /beta/jobTimeActivity | Create a jobTimeActivity
*infoplus.JobTimeActivityApi* | [**addJobTimeActivityAudit**](docs/JobTimeActivityApi.md#addJobTimeActivityAudit) | **PUT** /beta/jobTimeActivity/{jobTimeActivityId}/audit/{jobTimeActivityAudit} | Add new audit for a jobTimeActivity
*infoplus.JobTimeActivityApi* | [**addJobTimeActivityFile**](docs/JobTimeActivityApi.md#addJobTimeActivityFile) | **POST** /beta/jobTimeActivity/{jobTimeActivityId}/file/{fileName} | Attach a file to a jobTimeActivity
*infoplus.JobTimeActivityApi* | [**addJobTimeActivityFileByURL**](docs/JobTimeActivityApi.md#addJobTimeActivityFileByURL) | **POST** /beta/jobTimeActivity/{jobTimeActivityId}/file | Attach a file to a jobTimeActivity by URL.
*infoplus.JobTimeActivityApi* | [**addJobTimeActivityTag**](docs/JobTimeActivityApi.md#addJobTimeActivityTag) | **PUT** /beta/jobTimeActivity/{jobTimeActivityId}/tag/{jobTimeActivityTag} | Add new tags for a jobTimeActivity.
*infoplus.JobTimeActivityApi* | [**deleteJobTimeActivity**](docs/JobTimeActivityApi.md#deleteJobTimeActivity) | **DELETE** /beta/jobTimeActivity/{jobTimeActivityId} | Delete a jobTimeActivity
*infoplus.JobTimeActivityApi* | [**deleteJobTimeActivityFile**](docs/JobTimeActivityApi.md#deleteJobTimeActivityFile) | **DELETE** /beta/jobTimeActivity/{jobTimeActivityId}/file/{fileId} | Delete a file for a jobTimeActivity.
*infoplus.JobTimeActivityApi* | [**deleteJobTimeActivityTag**](docs/JobTimeActivityApi.md#deleteJobTimeActivityTag) | **DELETE** /beta/jobTimeActivity/{jobTimeActivityId}/tag/{jobTimeActivityTag} | Delete a tag for a jobTimeActivity.
*infoplus.JobTimeActivityApi* | [**getDuplicateJobTimeActivityById**](docs/JobTimeActivityApi.md#getDuplicateJobTimeActivityById) | **GET** /beta/jobTimeActivity/duplicate/{jobTimeActivityId} | Get a duplicated a jobTimeActivity by id
*infoplus.JobTimeActivityApi* | [**getJobTimeActivityByFilter**](docs/JobTimeActivityApi.md#getJobTimeActivityByFilter) | **GET** /beta/jobTimeActivity/search | Search jobTimeActivitys by filter
*infoplus.JobTimeActivityApi* | [**getJobTimeActivityById**](docs/JobTimeActivityApi.md#getJobTimeActivityById) | **GET** /beta/jobTimeActivity/{jobTimeActivityId} | Get a jobTimeActivity by id
*infoplus.JobTimeActivityApi* | [**getJobTimeActivityFiles**](docs/JobTimeActivityApi.md#getJobTimeActivityFiles) | **GET** /beta/jobTimeActivity/{jobTimeActivityId}/file | Get the files for a jobTimeActivity.
*infoplus.JobTimeActivityApi* | [**getJobTimeActivityTags**](docs/JobTimeActivityApi.md#getJobTimeActivityTags) | **GET** /beta/jobTimeActivity/{jobTimeActivityId}/tag | Get the tags for a jobTimeActivity.
*infoplus.JobTimeActivityApi* | [**updateJobTimeActivity**](docs/JobTimeActivityApi.md#updateJobTimeActivity) | **PUT** /beta/jobTimeActivity | Update a jobTimeActivity
*infoplus.JobTypeApi* | [**addJobType**](docs/JobTypeApi.md#addJobType) | **POST** /beta/jobType | Create a jobType
*infoplus.JobTypeApi* | [**addJobTypeAudit**](docs/JobTypeApi.md#addJobTypeAudit) | **PUT** /beta/jobType/{jobTypeId}/audit/{jobTypeAudit} | Add new audit for a jobType
*infoplus.JobTypeApi* | [**addJobTypeFile**](docs/JobTypeApi.md#addJobTypeFile) | **POST** /beta/jobType/{jobTypeId}/file/{fileName} | Attach a file to a jobType
*infoplus.JobTypeApi* | [**addJobTypeFileByURL**](docs/JobTypeApi.md#addJobTypeFileByURL) | **POST** /beta/jobType/{jobTypeId}/file | Attach a file to a jobType by URL.
*infoplus.JobTypeApi* | [**addJobTypeTag**](docs/JobTypeApi.md#addJobTypeTag) | **PUT** /beta/jobType/{jobTypeId}/tag/{jobTypeTag} | Add new tags for a jobType.
*infoplus.JobTypeApi* | [**deleteJobType**](docs/JobTypeApi.md#deleteJobType) | **DELETE** /beta/jobType/{jobTypeId} | Delete a jobType
*infoplus.JobTypeApi* | [**deleteJobTypeFile**](docs/JobTypeApi.md#deleteJobTypeFile) | **DELETE** /beta/jobType/{jobTypeId}/file/{fileId} | Delete a file for a jobType.
*infoplus.JobTypeApi* | [**deleteJobTypeTag**](docs/JobTypeApi.md#deleteJobTypeTag) | **DELETE** /beta/jobType/{jobTypeId}/tag/{jobTypeTag} | Delete a tag for a jobType.
*infoplus.JobTypeApi* | [**getDuplicateJobTypeById**](docs/JobTypeApi.md#getDuplicateJobTypeById) | **GET** /beta/jobType/duplicate/{jobTypeId} | Get a duplicated a jobType by id
*infoplus.JobTypeApi* | [**getJobTypeByFilter**](docs/JobTypeApi.md#getJobTypeByFilter) | **GET** /beta/jobType/search | Search jobTypes by filter
*infoplus.JobTypeApi* | [**getJobTypeById**](docs/JobTypeApi.md#getJobTypeById) | **GET** /beta/jobType/{jobTypeId} | Get a jobType by id
*infoplus.JobTypeApi* | [**getJobTypeFiles**](docs/JobTypeApi.md#getJobTypeFiles) | **GET** /beta/jobType/{jobTypeId}/file | Get the files for a jobType.
*infoplus.JobTypeApi* | [**getJobTypeTags**](docs/JobTypeApi.md#getJobTypeTags) | **GET** /beta/jobType/{jobTypeId}/tag | Get the tags for a jobType.
*infoplus.JobTypeApi* | [**updateJobType**](docs/JobTypeApi.md#updateJobType) | **PUT** /beta/jobType | Update a jobType
*infoplus.JobTypeApi* | [**updateJobTypeCustomFields**](docs/JobTypeApi.md#updateJobTypeCustomFields) | **PUT** /beta/jobType/customFields | Update a jobType custom fields
*infoplus.KitApi* | [**addKit**](docs/KitApi.md#addKit) | **POST** /beta/kit | Create a kit
*infoplus.KitApi* | [**addKitAudit**](docs/KitApi.md#addKitAudit) | **PUT** /beta/kit/{kitId}/audit/{kitAudit} | Add new audit for a kit
*infoplus.KitApi* | [**addKitFile**](docs/KitApi.md#addKitFile) | **POST** /beta/kit/{kitId}/file/{fileName} | Attach a file to a kit
*infoplus.KitApi* | [**addKitFileByURL**](docs/KitApi.md#addKitFileByURL) | **POST** /beta/kit/{kitId}/file | Attach a file to a kit by URL.
*infoplus.KitApi* | [**addKitTag**](docs/KitApi.md#addKitTag) | **PUT** /beta/kit/{kitId}/tag/{kitTag} | Add new tags for a kit.
*infoplus.KitApi* | [**deleteKit**](docs/KitApi.md#deleteKit) | **DELETE** /beta/kit/{kitId} | Delete a kit
*infoplus.KitApi* | [**deleteKitFile**](docs/KitApi.md#deleteKitFile) | **DELETE** /beta/kit/{kitId}/file/{fileId} | Delete a file for a kit.
*infoplus.KitApi* | [**deleteKitTag**](docs/KitApi.md#deleteKitTag) | **DELETE** /beta/kit/{kitId}/tag/{kitTag} | Delete a tag for a kit.
*infoplus.KitApi* | [**getDuplicateKitById**](docs/KitApi.md#getDuplicateKitById) | **GET** /beta/kit/duplicate/{kitId} | Get a duplicated a kit by id
*infoplus.KitApi* | [**getKitByFilter**](docs/KitApi.md#getKitByFilter) | **GET** /beta/kit/search | Search kits by filter
*infoplus.KitApi* | [**getKitById**](docs/KitApi.md#getKitById) | **GET** /beta/kit/{kitId} | Get a kit by id
*infoplus.KitApi* | [**getKitFiles**](docs/KitApi.md#getKitFiles) | **GET** /beta/kit/{kitId}/file | Get the files for a kit.
*infoplus.KitApi* | [**getKitTags**](docs/KitApi.md#getKitTags) | **GET** /beta/kit/{kitId}/tag | Get the tags for a kit.
*infoplus.KitApi* | [**updateKit**](docs/KitApi.md#updateKit) | **PUT** /beta/kit | Update a kit
*infoplus.KitApi* | [**updateKitCustomFields**](docs/KitApi.md#updateKitCustomFields) | **PUT** /beta/kit/customFields | Update a kit custom fields
*infoplus.LegacyLowstockContactApi* | [**addLegacyLowstockContact**](docs/LegacyLowstockContactApi.md#addLegacyLowstockContact) | **POST** /beta/legacyLowstockContact | Create a legacyLowstockContact
*infoplus.LegacyLowstockContactApi* | [**addLegacyLowstockContactAudit**](docs/LegacyLowstockContactApi.md#addLegacyLowstockContactAudit) | **PUT** /beta/legacyLowstockContact/{legacyLowstockContactId}/audit/{legacyLowstockContactAudit} | Add new audit for a legacyLowstockContact
*infoplus.LegacyLowstockContactApi* | [**addLegacyLowstockContactFile**](docs/LegacyLowstockContactApi.md#addLegacyLowstockContactFile) | **POST** /beta/legacyLowstockContact/{legacyLowstockContactId}/file/{fileName} | Attach a file to a legacyLowstockContact
*infoplus.LegacyLowstockContactApi* | [**addLegacyLowstockContactFileByURL**](docs/LegacyLowstockContactApi.md#addLegacyLowstockContactFileByURL) | **POST** /beta/legacyLowstockContact/{legacyLowstockContactId}/file | Attach a file to a legacyLowstockContact by URL.
*infoplus.LegacyLowstockContactApi* | [**addLegacyLowstockContactTag**](docs/LegacyLowstockContactApi.md#addLegacyLowstockContactTag) | **PUT** /beta/legacyLowstockContact/{legacyLowstockContactId}/tag/{legacyLowstockContactTag} | Add new tags for a legacyLowstockContact.
*infoplus.LegacyLowstockContactApi* | [**deleteLegacyLowstockContact**](docs/LegacyLowstockContactApi.md#deleteLegacyLowstockContact) | **DELETE** /beta/legacyLowstockContact/{legacyLowstockContactId} | Delete a legacyLowstockContact
*infoplus.LegacyLowstockContactApi* | [**deleteLegacyLowstockContactFile**](docs/LegacyLowstockContactApi.md#deleteLegacyLowstockContactFile) | **DELETE** /beta/legacyLowstockContact/{legacyLowstockContactId}/file/{fileId} | Delete a file for a legacyLowstockContact.
*infoplus.LegacyLowstockContactApi* | [**deleteLegacyLowstockContactTag**](docs/LegacyLowstockContactApi.md#deleteLegacyLowstockContactTag) | **DELETE** /beta/legacyLowstockContact/{legacyLowstockContactId}/tag/{legacyLowstockContactTag} | Delete a tag for a legacyLowstockContact.
*infoplus.LegacyLowstockContactApi* | [**getDuplicateLegacyLowstockContactById**](docs/LegacyLowstockContactApi.md#getDuplicateLegacyLowstockContactById) | **GET** /beta/legacyLowstockContact/duplicate/{legacyLowstockContactId} | Get a duplicated a legacyLowstockContact by id
*infoplus.LegacyLowstockContactApi* | [**getLegacyLowstockContactByFilter**](docs/LegacyLowstockContactApi.md#getLegacyLowstockContactByFilter) | **GET** /beta/legacyLowstockContact/search | Search legacyLowstockContacts by filter
*infoplus.LegacyLowstockContactApi* | [**getLegacyLowstockContactById**](docs/LegacyLowstockContactApi.md#getLegacyLowstockContactById) | **GET** /beta/legacyLowstockContact/{legacyLowstockContactId} | Get a legacyLowstockContact by id
*infoplus.LegacyLowstockContactApi* | [**getLegacyLowstockContactFiles**](docs/LegacyLowstockContactApi.md#getLegacyLowstockContactFiles) | **GET** /beta/legacyLowstockContact/{legacyLowstockContactId}/file | Get the files for a legacyLowstockContact.
*infoplus.LegacyLowstockContactApi* | [**getLegacyLowstockContactTags**](docs/LegacyLowstockContactApi.md#getLegacyLowstockContactTags) | **GET** /beta/legacyLowstockContact/{legacyLowstockContactId}/tag | Get the tags for a legacyLowstockContact.
*infoplus.LegacyLowstockContactApi* | [**updateLegacyLowstockContact**](docs/LegacyLowstockContactApi.md#updateLegacyLowstockContact) | **PUT** /beta/legacyLowstockContact | Update a legacyLowstockContact
*infoplus.LineOfBusinessApi* | [**addLineOfBusiness**](docs/LineOfBusinessApi.md#addLineOfBusiness) | **POST** /beta/lineOfBusiness | Create a lineOfBusiness
*infoplus.LineOfBusinessApi* | [**addLineOfBusinessAudit**](docs/LineOfBusinessApi.md#addLineOfBusinessAudit) | **PUT** /beta/lineOfBusiness/{lineOfBusinessId}/audit/{lineOfBusinessAudit} | Add new audit for a lineOfBusiness
*infoplus.LineOfBusinessApi* | [**addLineOfBusinessFile**](docs/LineOfBusinessApi.md#addLineOfBusinessFile) | **POST** /beta/lineOfBusiness/{lineOfBusinessId}/file/{fileName} | Attach a file to a lineOfBusiness
*infoplus.LineOfBusinessApi* | [**addLineOfBusinessFileByURL**](docs/LineOfBusinessApi.md#addLineOfBusinessFileByURL) | **POST** /beta/lineOfBusiness/{lineOfBusinessId}/file | Attach a file to a lineOfBusiness by URL.
*infoplus.LineOfBusinessApi* | [**addLineOfBusinessTag**](docs/LineOfBusinessApi.md#addLineOfBusinessTag) | **PUT** /beta/lineOfBusiness/{lineOfBusinessId}/tag/{lineOfBusinessTag} | Add new tags for a lineOfBusiness.
*infoplus.LineOfBusinessApi* | [**deleteLineOfBusinessFile**](docs/LineOfBusinessApi.md#deleteLineOfBusinessFile) | **DELETE** /beta/lineOfBusiness/{lineOfBusinessId}/file/{fileId} | Delete a file for a lineOfBusiness.
*infoplus.LineOfBusinessApi* | [**deleteLineOfBusinessTag**](docs/LineOfBusinessApi.md#deleteLineOfBusinessTag) | **DELETE** /beta/lineOfBusiness/{lineOfBusinessId}/tag/{lineOfBusinessTag} | Delete a tag for a lineOfBusiness.
*infoplus.LineOfBusinessApi* | [**getDuplicateLineOfBusinessById**](docs/LineOfBusinessApi.md#getDuplicateLineOfBusinessById) | **GET** /beta/lineOfBusiness/duplicate/{lineOfBusinessId} | Get a duplicated a lineOfBusiness by id
*infoplus.LineOfBusinessApi* | [**getLineOfBusinessByFilter**](docs/LineOfBusinessApi.md#getLineOfBusinessByFilter) | **GET** /beta/lineOfBusiness/search | Search lineOfBusinesses by filter
*infoplus.LineOfBusinessApi* | [**getLineOfBusinessById**](docs/LineOfBusinessApi.md#getLineOfBusinessById) | **GET** /beta/lineOfBusiness/{lineOfBusinessId} | Get a lineOfBusiness by id
*infoplus.LineOfBusinessApi* | [**getLineOfBusinessFiles**](docs/LineOfBusinessApi.md#getLineOfBusinessFiles) | **GET** /beta/lineOfBusiness/{lineOfBusinessId}/file | Get the files for a lineOfBusiness.
*infoplus.LineOfBusinessApi* | [**getLineOfBusinessTags**](docs/LineOfBusinessApi.md#getLineOfBusinessTags) | **GET** /beta/lineOfBusiness/{lineOfBusinessId}/tag | Get the tags for a lineOfBusiness.
*infoplus.LineOfBusinessApi* | [**updateLineOfBusiness**](docs/LineOfBusinessApi.md#updateLineOfBusiness) | **PUT** /beta/lineOfBusiness | Update a lineOfBusiness
*infoplus.LineOfBusinessApi* | [**updateLineOfBusinessCustomFields**](docs/LineOfBusinessApi.md#updateLineOfBusinessCustomFields) | **PUT** /beta/lineOfBusiness/customFields | Update a lineOfBusiness custom fields
*infoplus.LoadApi* | [**addLoadAudit**](docs/LoadApi.md#addLoadAudit) | **PUT** /beta/load/{loadId}/audit/{loadAudit} | Add new audit for a load
*infoplus.LoadApi* | [**addLoadFile**](docs/LoadApi.md#addLoadFile) | **POST** /beta/load/{loadId}/file/{fileName} | Attach a file to a load
*infoplus.LoadApi* | [**addLoadFileByURL**](docs/LoadApi.md#addLoadFileByURL) | **POST** /beta/load/{loadId}/file | Attach a file to a load by URL.
*infoplus.LoadApi* | [**addLoadTag**](docs/LoadApi.md#addLoadTag) | **PUT** /beta/load/{loadId}/tag/{loadTag} | Add new tags for a load.
*infoplus.LoadApi* | [**deleteLoadFile**](docs/LoadApi.md#deleteLoadFile) | **DELETE** /beta/load/{loadId}/file/{fileId} | Delete a file for a load.
*infoplus.LoadApi* | [**deleteLoadTag**](docs/LoadApi.md#deleteLoadTag) | **DELETE** /beta/load/{loadId}/tag/{loadTag} | Delete a tag for a load.
*infoplus.LoadApi* | [**getDuplicateLoadById**](docs/LoadApi.md#getDuplicateLoadById) | **GET** /beta/load/duplicate/{loadId} | Get a duplicated a load by id
*infoplus.LoadApi* | [**getLoadByFilter**](docs/LoadApi.md#getLoadByFilter) | **GET** /beta/load/search | Search loads by filter
*infoplus.LoadApi* | [**getLoadById**](docs/LoadApi.md#getLoadById) | **GET** /beta/load/{loadId} | Get a load by id
*infoplus.LoadApi* | [**getLoadFiles**](docs/LoadApi.md#getLoadFiles) | **GET** /beta/load/{loadId}/file | Get the files for a load.
*infoplus.LoadApi* | [**getLoadTags**](docs/LoadApi.md#getLoadTags) | **GET** /beta/load/{loadId}/tag | Get the tags for a load.
*infoplus.LoadApi* | [**updateLoadCustomFields**](docs/LoadApi.md#updateLoadCustomFields) | **PUT** /beta/load/customFields | Update a load custom fields
*infoplus.LoadContentApi* | [**addLoadContentAudit**](docs/LoadContentApi.md#addLoadContentAudit) | **PUT** /beta/loadContent/{loadContentId}/audit/{loadContentAudit} | Add new audit for a loadContent
*infoplus.LoadContentApi* | [**addLoadContentFile**](docs/LoadContentApi.md#addLoadContentFile) | **POST** /beta/loadContent/{loadContentId}/file/{fileName} | Attach a file to a loadContent
*infoplus.LoadContentApi* | [**addLoadContentFileByURL**](docs/LoadContentApi.md#addLoadContentFileByURL) | **POST** /beta/loadContent/{loadContentId}/file | Attach a file to a loadContent by URL.
*infoplus.LoadContentApi* | [**addLoadContentTag**](docs/LoadContentApi.md#addLoadContentTag) | **PUT** /beta/loadContent/{loadContentId}/tag/{loadContentTag} | Add new tags for a loadContent.
*infoplus.LoadContentApi* | [**deleteLoadContentFile**](docs/LoadContentApi.md#deleteLoadContentFile) | **DELETE** /beta/loadContent/{loadContentId}/file/{fileId} | Delete a file for a loadContent.
*infoplus.LoadContentApi* | [**deleteLoadContentTag**](docs/LoadContentApi.md#deleteLoadContentTag) | **DELETE** /beta/loadContent/{loadContentId}/tag/{loadContentTag} | Delete a tag for a loadContent.
*infoplus.LoadContentApi* | [**getDuplicateLoadContentById**](docs/LoadContentApi.md#getDuplicateLoadContentById) | **GET** /beta/loadContent/duplicate/{loadContentId} | Get a duplicated a loadContent by id
*infoplus.LoadContentApi* | [**getLoadContentByFilter**](docs/LoadContentApi.md#getLoadContentByFilter) | **GET** /beta/loadContent/search | Search loadContents by filter
*infoplus.LoadContentApi* | [**getLoadContentById**](docs/LoadContentApi.md#getLoadContentById) | **GET** /beta/loadContent/{loadContentId} | Get a loadContent by id
*infoplus.LoadContentApi* | [**getLoadContentFiles**](docs/LoadContentApi.md#getLoadContentFiles) | **GET** /beta/loadContent/{loadContentId}/file | Get the files for a loadContent.
*infoplus.LoadContentApi* | [**getLoadContentTags**](docs/LoadContentApi.md#getLoadContentTags) | **GET** /beta/loadContent/{loadContentId}/tag | Get the tags for a loadContent.
*infoplus.LoadContentApi* | [**updateLoadContentCustomFields**](docs/LoadContentApi.md#updateLoadContentCustomFields) | **PUT** /beta/loadContent/customFields | Update a loadContent custom fields
*infoplus.LocationApi* | [**addLocation**](docs/LocationApi.md#addLocation) | **POST** /beta/location | Create a location
*infoplus.LocationApi* | [**addLocationAudit**](docs/LocationApi.md#addLocationAudit) | **PUT** /beta/location/{locationId}/audit/{locationAudit} | Add new audit for a location
*infoplus.LocationApi* | [**addLocationFile**](docs/LocationApi.md#addLocationFile) | **POST** /beta/location/{locationId}/file/{fileName} | Attach a file to a location
*infoplus.LocationApi* | [**addLocationFileByURL**](docs/LocationApi.md#addLocationFileByURL) | **POST** /beta/location/{locationId}/file | Attach a file to a location by URL.
*infoplus.LocationApi* | [**addLocationTag**](docs/LocationApi.md#addLocationTag) | **PUT** /beta/location/{locationId}/tag/{locationTag} | Add new tags for a location.
*infoplus.LocationApi* | [**deleteLocation**](docs/LocationApi.md#deleteLocation) | **DELETE** /beta/location/{locationId} | Delete a location
*infoplus.LocationApi* | [**deleteLocationFile**](docs/LocationApi.md#deleteLocationFile) | **DELETE** /beta/location/{locationId}/file/{fileId} | Delete a file for a location.
*infoplus.LocationApi* | [**deleteLocationTag**](docs/LocationApi.md#deleteLocationTag) | **DELETE** /beta/location/{locationId}/tag/{locationTag} | Delete a tag for a location.
*infoplus.LocationApi* | [**getDuplicateLocationById**](docs/LocationApi.md#getDuplicateLocationById) | **GET** /beta/location/duplicate/{locationId} | Get a duplicated a location by id
*infoplus.LocationApi* | [**getLocationByFilter**](docs/LocationApi.md#getLocationByFilter) | **GET** /beta/location/search | Search locations by filter
*infoplus.LocationApi* | [**getLocationById**](docs/LocationApi.md#getLocationById) | **GET** /beta/location/{locationId} | Get a location by id
*infoplus.LocationApi* | [**getLocationFiles**](docs/LocationApi.md#getLocationFiles) | **GET** /beta/location/{locationId}/file | Get the files for a location.
*infoplus.LocationApi* | [**getLocationTags**](docs/LocationApi.md#getLocationTags) | **GET** /beta/location/{locationId}/tag | Get the tags for a location.
*infoplus.LocationApi* | [**updateLocation**](docs/LocationApi.md#updateLocation) | **PUT** /beta/location | Update a location
*infoplus.LocationApi* | [**updateLocationCustomFields**](docs/LocationApi.md#updateLocationCustomFields) | **PUT** /beta/location/customFields | Update a location custom fields
*infoplus.LocationAddressSchemeApi* | [**addLocationAddressScheme**](docs/LocationAddressSchemeApi.md#addLocationAddressScheme) | **POST** /beta/locationAddressScheme | Create a locationAddressScheme
*infoplus.LocationAddressSchemeApi* | [**addLocationAddressSchemeAudit**](docs/LocationAddressSchemeApi.md#addLocationAddressSchemeAudit) | **PUT** /beta/locationAddressScheme/{locationAddressSchemeId}/audit/{locationAddressSchemeAudit} | Add new audit for a locationAddressScheme
*infoplus.LocationAddressSchemeApi* | [**addLocationAddressSchemeFile**](docs/LocationAddressSchemeApi.md#addLocationAddressSchemeFile) | **POST** /beta/locationAddressScheme/{locationAddressSchemeId}/file/{fileName} | Attach a file to a locationAddressScheme
*infoplus.LocationAddressSchemeApi* | [**addLocationAddressSchemeFileByURL**](docs/LocationAddressSchemeApi.md#addLocationAddressSchemeFileByURL) | **POST** /beta/locationAddressScheme/{locationAddressSchemeId}/file | Attach a file to a locationAddressScheme by URL.
*infoplus.LocationAddressSchemeApi* | [**addLocationAddressSchemeTag**](docs/LocationAddressSchemeApi.md#addLocationAddressSchemeTag) | **PUT** /beta/locationAddressScheme/{locationAddressSchemeId}/tag/{locationAddressSchemeTag} | Add new tags for a locationAddressScheme.
*infoplus.LocationAddressSchemeApi* | [**deleteLocationAddressScheme**](docs/LocationAddressSchemeApi.md#deleteLocationAddressScheme) | **DELETE** /beta/locationAddressScheme/{locationAddressSchemeId} | Delete a locationAddressScheme
*infoplus.LocationAddressSchemeApi* | [**deleteLocationAddressSchemeFile**](docs/LocationAddressSchemeApi.md#deleteLocationAddressSchemeFile) | **DELETE** /beta/locationAddressScheme/{locationAddressSchemeId}/file/{fileId} | Delete a file for a locationAddressScheme.
*infoplus.LocationAddressSchemeApi* | [**deleteLocationAddressSchemeTag**](docs/LocationAddressSchemeApi.md#deleteLocationAddressSchemeTag) | **DELETE** /beta/locationAddressScheme/{locationAddressSchemeId}/tag/{locationAddressSchemeTag} | Delete a tag for a locationAddressScheme.
*infoplus.LocationAddressSchemeApi* | [**getDuplicateLocationAddressSchemeById**](docs/LocationAddressSchemeApi.md#getDuplicateLocationAddressSchemeById) | **GET** /beta/locationAddressScheme/duplicate/{locationAddressSchemeId} | Get a duplicated a locationAddressScheme by id
*infoplus.LocationAddressSchemeApi* | [**getLocationAddressSchemeByFilter**](docs/LocationAddressSchemeApi.md#getLocationAddressSchemeByFilter) | **GET** /beta/locationAddressScheme/search | Search locationAddressSchemes by filter
*infoplus.LocationAddressSchemeApi* | [**getLocationAddressSchemeById**](docs/LocationAddressSchemeApi.md#getLocationAddressSchemeById) | **GET** /beta/locationAddressScheme/{locationAddressSchemeId} | Get a locationAddressScheme by id
*infoplus.LocationAddressSchemeApi* | [**getLocationAddressSchemeFiles**](docs/LocationAddressSchemeApi.md#getLocationAddressSchemeFiles) | **GET** /beta/locationAddressScheme/{locationAddressSchemeId}/file | Get the files for a locationAddressScheme.
*infoplus.LocationAddressSchemeApi* | [**getLocationAddressSchemeTags**](docs/LocationAddressSchemeApi.md#getLocationAddressSchemeTags) | **GET** /beta/locationAddressScheme/{locationAddressSchemeId}/tag | Get the tags for a locationAddressScheme.
*infoplus.LocationAddressSchemeApi* | [**updateLocationAddressScheme**](docs/LocationAddressSchemeApi.md#updateLocationAddressScheme) | **PUT** /beta/locationAddressScheme | Update a locationAddressScheme
*infoplus.LocationAddressSchemeApi* | [**updateLocationAddressSchemeCustomFields**](docs/LocationAddressSchemeApi.md#updateLocationAddressSchemeCustomFields) | **PUT** /beta/locationAddressScheme/customFields | Update a locationAddressScheme custom fields
*infoplus.LocationBillingTypeApi* | [**addLocationBillingType**](docs/LocationBillingTypeApi.md#addLocationBillingType) | **POST** /beta/locationBillingType | Create a locationBillingType
*infoplus.LocationBillingTypeApi* | [**addLocationBillingTypeAudit**](docs/LocationBillingTypeApi.md#addLocationBillingTypeAudit) | **PUT** /beta/locationBillingType/{locationBillingTypeId}/audit/{locationBillingTypeAudit} | Add new audit for a locationBillingType
*infoplus.LocationBillingTypeApi* | [**addLocationBillingTypeFile**](docs/LocationBillingTypeApi.md#addLocationBillingTypeFile) | **POST** /beta/locationBillingType/{locationBillingTypeId}/file/{fileName} | Attach a file to a locationBillingType
*infoplus.LocationBillingTypeApi* | [**addLocationBillingTypeFileByURL**](docs/LocationBillingTypeApi.md#addLocationBillingTypeFileByURL) | **POST** /beta/locationBillingType/{locationBillingTypeId}/file | Attach a file to a locationBillingType by URL.
*infoplus.LocationBillingTypeApi* | [**addLocationBillingTypeTag**](docs/LocationBillingTypeApi.md#addLocationBillingTypeTag) | **PUT** /beta/locationBillingType/{locationBillingTypeId}/tag/{locationBillingTypeTag} | Add new tags for a locationBillingType.
*infoplus.LocationBillingTypeApi* | [**deleteLocationBillingType**](docs/LocationBillingTypeApi.md#deleteLocationBillingType) | **DELETE** /beta/locationBillingType/{locationBillingTypeId} | Delete a locationBillingType
*infoplus.LocationBillingTypeApi* | [**deleteLocationBillingTypeFile**](docs/LocationBillingTypeApi.md#deleteLocationBillingTypeFile) | **DELETE** /beta/locationBillingType/{locationBillingTypeId}/file/{fileId} | Delete a file for a locationBillingType.
*infoplus.LocationBillingTypeApi* | [**deleteLocationBillingTypeTag**](docs/LocationBillingTypeApi.md#deleteLocationBillingTypeTag) | **DELETE** /beta/locationBillingType/{locationBillingTypeId}/tag/{locationBillingTypeTag} | Delete a tag for a locationBillingType.
*infoplus.LocationBillingTypeApi* | [**getDuplicateLocationBillingTypeById**](docs/LocationBillingTypeApi.md#getDuplicateLocationBillingTypeById) | **GET** /beta/locationBillingType/duplicate/{locationBillingTypeId} | Get a duplicated a locationBillingType by id
*infoplus.LocationBillingTypeApi* | [**getLocationBillingTypeByFilter**](docs/LocationBillingTypeApi.md#getLocationBillingTypeByFilter) | **GET** /beta/locationBillingType/search | Search locationBillingTypes by filter
*infoplus.LocationBillingTypeApi* | [**getLocationBillingTypeById**](docs/LocationBillingTypeApi.md#getLocationBillingTypeById) | **GET** /beta/locationBillingType/{locationBillingTypeId} | Get a locationBillingType by id
*infoplus.LocationBillingTypeApi* | [**getLocationBillingTypeFiles**](docs/LocationBillingTypeApi.md#getLocationBillingTypeFiles) | **GET** /beta/locationBillingType/{locationBillingTypeId}/file | Get the files for a locationBillingType.
*infoplus.LocationBillingTypeApi* | [**getLocationBillingTypeTags**](docs/LocationBillingTypeApi.md#getLocationBillingTypeTags) | **GET** /beta/locationBillingType/{locationBillingTypeId}/tag | Get the tags for a locationBillingType.
*infoplus.LocationBillingTypeApi* | [**updateLocationBillingType**](docs/LocationBillingTypeApi.md#updateLocationBillingType) | **PUT** /beta/locationBillingType | Update a locationBillingType
*infoplus.LocationBillingTypeApi* | [**updateLocationBillingTypeCustomFields**](docs/LocationBillingTypeApi.md#updateLocationBillingTypeCustomFields) | **PUT** /beta/locationBillingType/customFields | Update a locationBillingType custom fields
*infoplus.LocationFootprintApi* | [**addLocationFootprint**](docs/LocationFootprintApi.md#addLocationFootprint) | **POST** /beta/locationFootprint | Create a locationFootprint
*infoplus.LocationFootprintApi* | [**addLocationFootprintAudit**](docs/LocationFootprintApi.md#addLocationFootprintAudit) | **PUT** /beta/locationFootprint/{locationFootprintId}/audit/{locationFootprintAudit} | Add new audit for a locationFootprint
*infoplus.LocationFootprintApi* | [**addLocationFootprintFile**](docs/LocationFootprintApi.md#addLocationFootprintFile) | **POST** /beta/locationFootprint/{locationFootprintId}/file/{fileName} | Attach a file to a locationFootprint
*infoplus.LocationFootprintApi* | [**addLocationFootprintFileByURL**](docs/LocationFootprintApi.md#addLocationFootprintFileByURL) | **POST** /beta/locationFootprint/{locationFootprintId}/file | Attach a file to a locationFootprint by URL.
*infoplus.LocationFootprintApi* | [**addLocationFootprintTag**](docs/LocationFootprintApi.md#addLocationFootprintTag) | **PUT** /beta/locationFootprint/{locationFootprintId}/tag/{locationFootprintTag} | Add new tags for a locationFootprint.
*infoplus.LocationFootprintApi* | [**deleteLocationFootprint**](docs/LocationFootprintApi.md#deleteLocationFootprint) | **DELETE** /beta/locationFootprint/{locationFootprintId} | Delete a locationFootprint
*infoplus.LocationFootprintApi* | [**deleteLocationFootprintFile**](docs/LocationFootprintApi.md#deleteLocationFootprintFile) | **DELETE** /beta/locationFootprint/{locationFootprintId}/file/{fileId} | Delete a file for a locationFootprint.
*infoplus.LocationFootprintApi* | [**deleteLocationFootprintTag**](docs/LocationFootprintApi.md#deleteLocationFootprintTag) | **DELETE** /beta/locationFootprint/{locationFootprintId}/tag/{locationFootprintTag} | Delete a tag for a locationFootprint.
*infoplus.LocationFootprintApi* | [**getDuplicateLocationFootprintById**](docs/LocationFootprintApi.md#getDuplicateLocationFootprintById) | **GET** /beta/locationFootprint/duplicate/{locationFootprintId} | Get a duplicated a locationFootprint by id
*infoplus.LocationFootprintApi* | [**getLocationFootprintByFilter**](docs/LocationFootprintApi.md#getLocationFootprintByFilter) | **GET** /beta/locationFootprint/search | Search locationFootprints by filter
*infoplus.LocationFootprintApi* | [**getLocationFootprintById**](docs/LocationFootprintApi.md#getLocationFootprintById) | **GET** /beta/locationFootprint/{locationFootprintId} | Get a locationFootprint by id
*infoplus.LocationFootprintApi* | [**getLocationFootprintFiles**](docs/LocationFootprintApi.md#getLocationFootprintFiles) | **GET** /beta/locationFootprint/{locationFootprintId}/file | Get the files for a locationFootprint.
*infoplus.LocationFootprintApi* | [**getLocationFootprintTags**](docs/LocationFootprintApi.md#getLocationFootprintTags) | **GET** /beta/locationFootprint/{locationFootprintId}/tag | Get the tags for a locationFootprint.
*infoplus.LocationFootprintApi* | [**updateLocationFootprint**](docs/LocationFootprintApi.md#updateLocationFootprint) | **PUT** /beta/locationFootprint | Update a locationFootprint
*infoplus.LocationFootprintApi* | [**updateLocationFootprintCustomFields**](docs/LocationFootprintApi.md#updateLocationFootprintCustomFields) | **PUT** /beta/locationFootprint/customFields | Update a locationFootprint custom fields
*infoplus.LoggedTimeApi* | [**addLoggedTimeAudit**](docs/LoggedTimeApi.md#addLoggedTimeAudit) | **PUT** /beta/loggedTime/{loggedTimeId}/audit/{loggedTimeAudit} | Add new audit for a loggedTime
*infoplus.LoggedTimeApi* | [**addLoggedTimeFile**](docs/LoggedTimeApi.md#addLoggedTimeFile) | **POST** /beta/loggedTime/{loggedTimeId}/file/{fileName} | Attach a file to a loggedTime
*infoplus.LoggedTimeApi* | [**addLoggedTimeFileByURL**](docs/LoggedTimeApi.md#addLoggedTimeFileByURL) | **POST** /beta/loggedTime/{loggedTimeId}/file | Attach a file to a loggedTime by URL.
*infoplus.LoggedTimeApi* | [**addLoggedTimeTag**](docs/LoggedTimeApi.md#addLoggedTimeTag) | **PUT** /beta/loggedTime/{loggedTimeId}/tag/{loggedTimeTag} | Add new tags for a loggedTime.
*infoplus.LoggedTimeApi* | [**deleteLoggedTimeFile**](docs/LoggedTimeApi.md#deleteLoggedTimeFile) | **DELETE** /beta/loggedTime/{loggedTimeId}/file/{fileId} | Delete a file for a loggedTime.
*infoplus.LoggedTimeApi* | [**deleteLoggedTimeTag**](docs/LoggedTimeApi.md#deleteLoggedTimeTag) | **DELETE** /beta/loggedTime/{loggedTimeId}/tag/{loggedTimeTag} | Delete a tag for a loggedTime.
*infoplus.LoggedTimeApi* | [**getDuplicateLoggedTimeById**](docs/LoggedTimeApi.md#getDuplicateLoggedTimeById) | **GET** /beta/loggedTime/duplicate/{loggedTimeId} | Get a duplicated a loggedTime by id
*infoplus.LoggedTimeApi* | [**getLoggedTimeByFilter**](docs/LoggedTimeApi.md#getLoggedTimeByFilter) | **GET** /beta/loggedTime/search | Search loggedTimes by filter
*infoplus.LoggedTimeApi* | [**getLoggedTimeById**](docs/LoggedTimeApi.md#getLoggedTimeById) | **GET** /beta/loggedTime/{loggedTimeId} | Get a loggedTime by id
*infoplus.LoggedTimeApi* | [**getLoggedTimeFiles**](docs/LoggedTimeApi.md#getLoggedTimeFiles) | **GET** /beta/loggedTime/{loggedTimeId}/file | Get the files for a loggedTime.
*infoplus.LoggedTimeApi* | [**getLoggedTimeTags**](docs/LoggedTimeApi.md#getLoggedTimeTags) | **GET** /beta/loggedTime/{loggedTimeId}/tag | Get the tags for a loggedTime.
*infoplus.LoggedTimeApi* | [**updateLoggedTimeCustomFields**](docs/LoggedTimeApi.md#updateLoggedTimeCustomFields) | **PUT** /beta/loggedTime/customFields | Update a loggedTime custom fields
*infoplus.LoggedTimeTypeApi* | [**getLoggedTimeTypeById**](docs/LoggedTimeTypeApi.md#getLoggedTimeTypeById) | **GET** /beta/loggedTimeType/{loggedTimeTypeId} | Get a loggedTimeType by id
*infoplus.LoggedTimeTypeApi* | [**getLoggedTimeTypeBySearchText**](docs/LoggedTimeTypeApi.md#getLoggedTimeTypeBySearchText) | **GET** /beta/loggedTimeType/search | Search loggedTimeTypes
*infoplus.LowStockApi* | [**addLowStockAudit**](docs/LowStockApi.md#addLowStockAudit) | **PUT** /beta/lowStock/{lowStockId}/audit/{lowStockAudit} | Add new audit for a lowStock
*infoplus.LowStockApi* | [**addLowStockFile**](docs/LowStockApi.md#addLowStockFile) | **POST** /beta/lowStock/{lowStockId}/file/{fileName} | Attach a file to a lowStock
*infoplus.LowStockApi* | [**addLowStockFileByURL**](docs/LowStockApi.md#addLowStockFileByURL) | **POST** /beta/lowStock/{lowStockId}/file | Attach a file to a lowStock by URL.
*infoplus.LowStockApi* | [**addLowStockTag**](docs/LowStockApi.md#addLowStockTag) | **PUT** /beta/lowStock/{lowStockId}/tag/{lowStockTag} | Add new tags for a lowStock.
*infoplus.LowStockApi* | [**deleteLowStockFile**](docs/LowStockApi.md#deleteLowStockFile) | **DELETE** /beta/lowStock/{lowStockId}/file/{fileId} | Delete a file for a lowStock.
*infoplus.LowStockApi* | [**deleteLowStockTag**](docs/LowStockApi.md#deleteLowStockTag) | **DELETE** /beta/lowStock/{lowStockId}/tag/{lowStockTag} | Delete a tag for a lowStock.
*infoplus.LowStockApi* | [**getDuplicateLowStockById**](docs/LowStockApi.md#getDuplicateLowStockById) | **GET** /beta/lowStock/duplicate/{lowStockId} | Get a duplicated a lowStock by id
*infoplus.LowStockApi* | [**getLowStockByFilter**](docs/LowStockApi.md#getLowStockByFilter) | **GET** /beta/lowStock/search | Search lowStocks by filter
*infoplus.LowStockApi* | [**getLowStockById**](docs/LowStockApi.md#getLowStockById) | **GET** /beta/lowStock/{lowStockId} | Get a lowStock by id
*infoplus.LowStockApi* | [**getLowStockFiles**](docs/LowStockApi.md#getLowStockFiles) | **GET** /beta/lowStock/{lowStockId}/file | Get the files for a lowStock.
*infoplus.LowStockApi* | [**getLowStockTags**](docs/LowStockApi.md#getLowStockTags) | **GET** /beta/lowStock/{lowStockId}/tag | Get the tags for a lowStock.
*infoplus.ManageScheduledPlansApi* | [**addManageScheduledPlans**](docs/ManageScheduledPlansApi.md#addManageScheduledPlans) | **POST** /beta/manageScheduledPlans | Create a manageScheduledPlans
*infoplus.ManageScheduledPlansApi* | [**addManageScheduledPlansAudit**](docs/ManageScheduledPlansApi.md#addManageScheduledPlansAudit) | **PUT** /beta/manageScheduledPlans/{manageScheduledPlansId}/audit/{manageScheduledPlansAudit} | Add new audit for a manageScheduledPlans
*infoplus.ManageScheduledPlansApi* | [**addManageScheduledPlansFile**](docs/ManageScheduledPlansApi.md#addManageScheduledPlansFile) | **POST** /beta/manageScheduledPlans/{manageScheduledPlansId}/file/{fileName} | Attach a file to a manageScheduledPlans
*infoplus.ManageScheduledPlansApi* | [**addManageScheduledPlansFileByURL**](docs/ManageScheduledPlansApi.md#addManageScheduledPlansFileByURL) | **POST** /beta/manageScheduledPlans/{manageScheduledPlansId}/file | Attach a file to a manageScheduledPlans by URL.
*infoplus.ManageScheduledPlansApi* | [**addManageScheduledPlansTag**](docs/ManageScheduledPlansApi.md#addManageScheduledPlansTag) | **PUT** /beta/manageScheduledPlans/{manageScheduledPlansId}/tag/{manageScheduledPlansTag} | Add new tags for a manageScheduledPlans.
*infoplus.ManageScheduledPlansApi* | [**deleteManageScheduledPlans**](docs/ManageScheduledPlansApi.md#deleteManageScheduledPlans) | **DELETE** /beta/manageScheduledPlans/{manageScheduledPlansId} | Delete a manageScheduledPlans
*infoplus.ManageScheduledPlansApi* | [**deleteManageScheduledPlansFile**](docs/ManageScheduledPlansApi.md#deleteManageScheduledPlansFile) | **DELETE** /beta/manageScheduledPlans/{manageScheduledPlansId}/file/{fileId} | Delete a file for a manageScheduledPlans.
*infoplus.ManageScheduledPlansApi* | [**deleteManageScheduledPlansTag**](docs/ManageScheduledPlansApi.md#deleteManageScheduledPlansTag) | **DELETE** /beta/manageScheduledPlans/{manageScheduledPlansId}/tag/{manageScheduledPlansTag} | Delete a tag for a manageScheduledPlans.
*infoplus.ManageScheduledPlansApi* | [**getDuplicateManageScheduledPlansById**](docs/ManageScheduledPlansApi.md#getDuplicateManageScheduledPlansById) | **GET** /beta/manageScheduledPlans/duplicate/{manageScheduledPlansId} | Get a duplicated a manageScheduledPlans by id
*infoplus.ManageScheduledPlansApi* | [**getManageScheduledPlansByFilter**](docs/ManageScheduledPlansApi.md#getManageScheduledPlansByFilter) | **GET** /beta/manageScheduledPlans/search | Search manageScheduledPlanses by filter
*infoplus.ManageScheduledPlansApi* | [**getManageScheduledPlansById**](docs/ManageScheduledPlansApi.md#getManageScheduledPlansById) | **GET** /beta/manageScheduledPlans/{manageScheduledPlansId} | Get a manageScheduledPlans by id
*infoplus.ManageScheduledPlansApi* | [**getManageScheduledPlansFiles**](docs/ManageScheduledPlansApi.md#getManageScheduledPlansFiles) | **GET** /beta/manageScheduledPlans/{manageScheduledPlansId}/file | Get the files for a manageScheduledPlans.
*infoplus.ManageScheduledPlansApi* | [**getManageScheduledPlansTags**](docs/ManageScheduledPlansApi.md#getManageScheduledPlansTags) | **GET** /beta/manageScheduledPlans/{manageScheduledPlansId}/tag | Get the tags for a manageScheduledPlans.
*infoplus.ManageScheduledPlansApi* | [**updateManageScheduledPlans**](docs/ManageScheduledPlansApi.md#updateManageScheduledPlans) | **PUT** /beta/manageScheduledPlans | Update a manageScheduledPlans
*infoplus.NonBusinessDayApi* | [**addNonBusinessDay**](docs/NonBusinessDayApi.md#addNonBusinessDay) | **POST** /beta/nonBusinessDay | Create a nonBusinessDay
*infoplus.NonBusinessDayApi* | [**addNonBusinessDayAudit**](docs/NonBusinessDayApi.md#addNonBusinessDayAudit) | **PUT** /beta/nonBusinessDay/{nonBusinessDayId}/audit/{nonBusinessDayAudit} | Add new audit for a nonBusinessDay
*infoplus.NonBusinessDayApi* | [**addNonBusinessDayFile**](docs/NonBusinessDayApi.md#addNonBusinessDayFile) | **POST** /beta/nonBusinessDay/{nonBusinessDayId}/file/{fileName} | Attach a file to a nonBusinessDay
*infoplus.NonBusinessDayApi* | [**addNonBusinessDayFileByURL**](docs/NonBusinessDayApi.md#addNonBusinessDayFileByURL) | **POST** /beta/nonBusinessDay/{nonBusinessDayId}/file | Attach a file to a nonBusinessDay by URL.
*infoplus.NonBusinessDayApi* | [**addNonBusinessDayTag**](docs/NonBusinessDayApi.md#addNonBusinessDayTag) | **PUT** /beta/nonBusinessDay/{nonBusinessDayId}/tag/{nonBusinessDayTag} | Add new tags for a nonBusinessDay.
*infoplus.NonBusinessDayApi* | [**deleteNonBusinessDay**](docs/NonBusinessDayApi.md#deleteNonBusinessDay) | **DELETE** /beta/nonBusinessDay/{nonBusinessDayId} | Delete a nonBusinessDay
*infoplus.NonBusinessDayApi* | [**deleteNonBusinessDayFile**](docs/NonBusinessDayApi.md#deleteNonBusinessDayFile) | **DELETE** /beta/nonBusinessDay/{nonBusinessDayId}/file/{fileId} | Delete a file for a nonBusinessDay.
*infoplus.NonBusinessDayApi* | [**deleteNonBusinessDayTag**](docs/NonBusinessDayApi.md#deleteNonBusinessDayTag) | **DELETE** /beta/nonBusinessDay/{nonBusinessDayId}/tag/{nonBusinessDayTag} | Delete a tag for a nonBusinessDay.
*infoplus.NonBusinessDayApi* | [**getDuplicateNonBusinessDayById**](docs/NonBusinessDayApi.md#getDuplicateNonBusinessDayById) | **GET** /beta/nonBusinessDay/duplicate/{nonBusinessDayId} | Get a duplicated a nonBusinessDay by id
*infoplus.NonBusinessDayApi* | [**getNonBusinessDayByFilter**](docs/NonBusinessDayApi.md#getNonBusinessDayByFilter) | **GET** /beta/nonBusinessDay/search | Search nonBusinessDays by filter
*infoplus.NonBusinessDayApi* | [**getNonBusinessDayById**](docs/NonBusinessDayApi.md#getNonBusinessDayById) | **GET** /beta/nonBusinessDay/{nonBusinessDayId} | Get a nonBusinessDay by id
*infoplus.NonBusinessDayApi* | [**getNonBusinessDayFiles**](docs/NonBusinessDayApi.md#getNonBusinessDayFiles) | **GET** /beta/nonBusinessDay/{nonBusinessDayId}/file | Get the files for a nonBusinessDay.
*infoplus.NonBusinessDayApi* | [**getNonBusinessDayTags**](docs/NonBusinessDayApi.md#getNonBusinessDayTags) | **GET** /beta/nonBusinessDay/{nonBusinessDayId}/tag | Get the tags for a nonBusinessDay.
*infoplus.NonBusinessDayApi* | [**updateNonBusinessDay**](docs/NonBusinessDayApi.md#updateNonBusinessDay) | **PUT** /beta/nonBusinessDay | Update a nonBusinessDay
*infoplus.OmsOrderApi* | [**addOmsOrder**](docs/OmsOrderApi.md#addOmsOrder) | **POST** /beta/omsOrder | Create an omsOrder
*infoplus.OmsOrderApi* | [**addOmsOrderAudit**](docs/OmsOrderApi.md#addOmsOrderAudit) | **PUT** /beta/omsOrder/{omsOrderId}/audit/{omsOrderAudit} | Add new audit for an omsOrder
*infoplus.OmsOrderApi* | [**addOmsOrderFile**](docs/OmsOrderApi.md#addOmsOrderFile) | **POST** /beta/omsOrder/{omsOrderId}/file/{fileName} | Attach a file to an omsOrder
*infoplus.OmsOrderApi* | [**addOmsOrderFileByURL**](docs/OmsOrderApi.md#addOmsOrderFileByURL) | **POST** /beta/omsOrder/{omsOrderId}/file | Attach a file to an omsOrder by URL.
*infoplus.OmsOrderApi* | [**addOmsOrderTag**](docs/OmsOrderApi.md#addOmsOrderTag) | **PUT** /beta/omsOrder/{omsOrderId}/tag/{omsOrderTag} | Add new tags for an omsOrder.
*infoplus.OmsOrderApi* | [**deleteOmsOrderFile**](docs/OmsOrderApi.md#deleteOmsOrderFile) | **DELETE** /beta/omsOrder/{omsOrderId}/file/{fileId} | Delete a file for an omsOrder.
*infoplus.OmsOrderApi* | [**deleteOmsOrderTag**](docs/OmsOrderApi.md#deleteOmsOrderTag) | **DELETE** /beta/omsOrder/{omsOrderId}/tag/{omsOrderTag} | Delete a tag for an omsOrder.
*infoplus.OmsOrderApi* | [**getDuplicateOmsOrderById**](docs/OmsOrderApi.md#getDuplicateOmsOrderById) | **GET** /beta/omsOrder/duplicate/{omsOrderId} | Get a duplicated an omsOrder by id
*infoplus.OmsOrderApi* | [**getOmsOrderByFilter**](docs/OmsOrderApi.md#getOmsOrderByFilter) | **GET** /beta/omsOrder/search | Search omsOrders by filter
*infoplus.OmsOrderApi* | [**getOmsOrderById**](docs/OmsOrderApi.md#getOmsOrderById) | **GET** /beta/omsOrder/{omsOrderId} | Get an omsOrder by id
*infoplus.OmsOrderApi* | [**getOmsOrderFiles**](docs/OmsOrderApi.md#getOmsOrderFiles) | **GET** /beta/omsOrder/{omsOrderId}/file | Get the files for an omsOrder.
*infoplus.OmsOrderApi* | [**getOmsOrderTags**](docs/OmsOrderApi.md#getOmsOrderTags) | **GET** /beta/omsOrder/{omsOrderId}/tag | Get the tags for an omsOrder.
*infoplus.OmsOrderApi* | [**updateOmsOrder**](docs/OmsOrderApi.md#updateOmsOrder) | **PUT** /beta/omsOrder | Update an omsOrder
*infoplus.OmsOrderApi* | [**updateOmsOrderCustomFields**](docs/OmsOrderApi.md#updateOmsOrderCustomFields) | **PUT** /beta/omsOrder/customFields | Update an omsOrder custom fields
*infoplus.OrderApi* | [**addOrder**](docs/OrderApi.md#addOrder) | **POST** /beta/order | Create an order
*infoplus.OrderApi* | [**addOrderAudit**](docs/OrderApi.md#addOrderAudit) | **PUT** /beta/order/{orderId}/audit/{orderAudit} | Add new audit for an order
*infoplus.OrderApi* | [**addOrderFile**](docs/OrderApi.md#addOrderFile) | **POST** /beta/order/{orderId}/file/{fileName} | Attach a file to an order
*infoplus.OrderApi* | [**addOrderFileByURL**](docs/OrderApi.md#addOrderFileByURL) | **POST** /beta/order/{orderId}/file | Attach a file to an order by URL.
*infoplus.OrderApi* | [**addOrderTag**](docs/OrderApi.md#addOrderTag) | **PUT** /beta/order/{orderId}/tag/{orderTag} | Add new tags for an order.
*infoplus.OrderApi* | [**applyOrderWarehouseFulfillmentPlan**](docs/OrderApi.md#applyOrderWarehouseFulfillmentPlan) | **POST** /beta/order/applyOrderWarehouseFulfillmentPlan | Run the Apply Order Warehouse Fulfillment Plan method.
*infoplus.OrderApi* | [**deleteOrder**](docs/OrderApi.md#deleteOrder) | **DELETE** /beta/order/{orderId} | Delete an order
*infoplus.OrderApi* | [**deleteOrderFile**](docs/OrderApi.md#deleteOrderFile) | **DELETE** /beta/order/{orderId}/file/{fileId} | Delete a file for an order.
*infoplus.OrderApi* | [**deleteOrderTag**](docs/OrderApi.md#deleteOrderTag) | **DELETE** /beta/order/{orderId}/tag/{orderTag} | Delete a tag for an order.
*infoplus.OrderApi* | [**editFulfillmentChannel**](docs/OrderApi.md#editFulfillmentChannel) | **POST** /beta/order/editFulfillmentChannel | Run the EditLineItemFulfillmentStrategy process.
*infoplus.OrderApi* | [**editLineItems**](docs/OrderApi.md#editLineItems) | **POST** /beta/order/editLineItems | Run the ReqManualSubstitution process.
*infoplus.OrderApi* | [**getDuplicateOrderById**](docs/OrderApi.md#getDuplicateOrderById) | **GET** /beta/order/duplicate/{orderId} | Get a duplicated an order by id
*infoplus.OrderApi* | [**getOrderByFilter**](docs/OrderApi.md#getOrderByFilter) | **GET** /beta/order/search | Search orders by filter
*infoplus.OrderApi* | [**getOrderById**](docs/OrderApi.md#getOrderById) | **GET** /beta/order/{orderId} | Get an order by id
*infoplus.OrderApi* | [**getOrderFiles**](docs/OrderApi.md#getOrderFiles) | **GET** /beta/order/{orderId}/file | Get the files for an order.
*infoplus.OrderApi* | [**getOrderPackData**](docs/OrderApi.md#getOrderPackData) | **POST** /beta/order/getOrderPackData | Run the Get Order Pack Data method.
*infoplus.OrderApi* | [**getOrderTags**](docs/OrderApi.md#getOrderTags) | **GET** /beta/order/{orderId}/tag | Get the tags for an order.
*infoplus.OrderApi* | [**getOrderWarehouseFulfillmentData**](docs/OrderApi.md#getOrderWarehouseFulfillmentData) | **POST** /beta/order/getOrderWarehouseFulfillmentData | Run the Get Order Warehouse Fulfillment Plan method.
*infoplus.OrderApi* | [**runFulfillmentPlan**](docs/OrderApi.md#runFulfillmentPlan) | **POST** /beta/order/runFulfillmentPlan | Run the RunFulfillmentPlan process.
*infoplus.OrderApi* | [**updateOrder**](docs/OrderApi.md#updateOrder) | **PUT** /beta/order | Update an order
*infoplus.OrderApi* | [**updateOrderCustomFields**](docs/OrderApi.md#updateOrderCustomFields) | **PUT** /beta/order/customFields | Update an order custom fields
*infoplus.OrderActivityApi* | [**addOrderActivity**](docs/OrderActivityApi.md#addOrderActivity) | **POST** /beta/orderActivity | Create an orderActivity
*infoplus.OrderActivityApi* | [**addOrderActivityAudit**](docs/OrderActivityApi.md#addOrderActivityAudit) | **PUT** /beta/orderActivity/{orderActivityId}/audit/{orderActivityAudit} | Add new audit for an orderActivity
*infoplus.OrderActivityApi* | [**addOrderActivityFile**](docs/OrderActivityApi.md#addOrderActivityFile) | **POST** /beta/orderActivity/{orderActivityId}/file/{fileName} | Attach a file to an orderActivity
*infoplus.OrderActivityApi* | [**addOrderActivityFileByURL**](docs/OrderActivityApi.md#addOrderActivityFileByURL) | **POST** /beta/orderActivity/{orderActivityId}/file | Attach a file to an orderActivity by URL.
*infoplus.OrderActivityApi* | [**addOrderActivityTag**](docs/OrderActivityApi.md#addOrderActivityTag) | **PUT** /beta/orderActivity/{orderActivityId}/tag/{orderActivityTag} | Add new tags for an orderActivity.
*infoplus.OrderActivityApi* | [**deleteOrderActivity**](docs/OrderActivityApi.md#deleteOrderActivity) | **DELETE** /beta/orderActivity/{orderActivityId} | Delete an orderActivity
*infoplus.OrderActivityApi* | [**deleteOrderActivityFile**](docs/OrderActivityApi.md#deleteOrderActivityFile) | **DELETE** /beta/orderActivity/{orderActivityId}/file/{fileId} | Delete a file for an orderActivity.
*infoplus.OrderActivityApi* | [**deleteOrderActivityTag**](docs/OrderActivityApi.md#deleteOrderActivityTag) | **DELETE** /beta/orderActivity/{orderActivityId}/tag/{orderActivityTag} | Delete a tag for an orderActivity.
*infoplus.OrderActivityApi* | [**getDuplicateOrderActivityById**](docs/OrderActivityApi.md#getDuplicateOrderActivityById) | **GET** /beta/orderActivity/duplicate/{orderActivityId} | Get a duplicated an orderActivity by id
*infoplus.OrderActivityApi* | [**getOrderActivityByFilter**](docs/OrderActivityApi.md#getOrderActivityByFilter) | **GET** /beta/orderActivity/search | Search orderActivitys by filter
*infoplus.OrderActivityApi* | [**getOrderActivityById**](docs/OrderActivityApi.md#getOrderActivityById) | **GET** /beta/orderActivity/{orderActivityId} | Get an orderActivity by id
*infoplus.OrderActivityApi* | [**getOrderActivityFiles**](docs/OrderActivityApi.md#getOrderActivityFiles) | **GET** /beta/orderActivity/{orderActivityId}/file | Get the files for an orderActivity.
*infoplus.OrderActivityApi* | [**getOrderActivityTags**](docs/OrderActivityApi.md#getOrderActivityTags) | **GET** /beta/orderActivity/{orderActivityId}/tag | Get the tags for an orderActivity.
*infoplus.OrderActivityApi* | [**updateOrderActivity**](docs/OrderActivityApi.md#updateOrderActivity) | **PUT** /beta/orderActivity | Update an orderActivity
*infoplus.OrderInvoiceTemplateLineItemDescriptionEnumApi* | [**getOrderInvoiceTemplateLineItemDescriptionEnumById**](docs/OrderInvoiceTemplateLineItemDescriptionEnumApi.md#getOrderInvoiceTemplateLineItemDescriptionEnumById) | **GET** /beta/orderInvoiceTemplateLineItemDescriptionEnum/{orderInvoiceTemplateLineItemDescriptionEnumId} | Get an orderInvoiceTemplateLineItemDescriptionEnum by id
*infoplus.OrderInvoiceTemplateLineItemDescriptionEnumApi* | [**getOrderInvoiceTemplateLineItemDescriptionEnumBySearchText**](docs/OrderInvoiceTemplateLineItemDescriptionEnumApi.md#getOrderInvoiceTemplateLineItemDescriptionEnumBySearchText) | **GET** /beta/orderInvoiceTemplateLineItemDescriptionEnum/search | Search orderInvoiceTemplateLineItemDescriptionEnums
*infoplus.OrderLineApi* | [**addOrderLineAudit**](docs/OrderLineApi.md#addOrderLineAudit) | **PUT** /beta/orderLine/{orderLineId}/audit/{orderLineAudit} | Add new audit for an orderLine
*infoplus.OrderLineApi* | [**addOrderLineFile**](docs/OrderLineApi.md#addOrderLineFile) | **POST** /beta/orderLine/{orderLineId}/file/{fileName} | Attach a file to an orderLine
*infoplus.OrderLineApi* | [**addOrderLineFileByURL**](docs/OrderLineApi.md#addOrderLineFileByURL) | **POST** /beta/orderLine/{orderLineId}/file | Attach a file to an orderLine by URL.
*infoplus.OrderLineApi* | [**addOrderLineTag**](docs/OrderLineApi.md#addOrderLineTag) | **PUT** /beta/orderLine/{orderLineId}/tag/{orderLineTag} | Add new tags for an orderLine.
*infoplus.OrderLineApi* | [**deleteOrderLineFile**](docs/OrderLineApi.md#deleteOrderLineFile) | **DELETE** /beta/orderLine/{orderLineId}/file/{fileId} | Delete a file for an orderLine.
*infoplus.OrderLineApi* | [**deleteOrderLineTag**](docs/OrderLineApi.md#deleteOrderLineTag) | **DELETE** /beta/orderLine/{orderLineId}/tag/{orderLineTag} | Delete a tag for an orderLine.
*infoplus.OrderLineApi* | [**getDuplicateOrderLineById**](docs/OrderLineApi.md#getDuplicateOrderLineById) | **GET** /beta/orderLine/duplicate/{orderLineId} | Get a duplicated an orderLine by id
*infoplus.OrderLineApi* | [**getOrderLineByFilter**](docs/OrderLineApi.md#getOrderLineByFilter) | **GET** /beta/orderLine/search | Search orderLines by filter
*infoplus.OrderLineApi* | [**getOrderLineById**](docs/OrderLineApi.md#getOrderLineById) | **GET** /beta/orderLine/{orderLineId} | Get an orderLine by id
*infoplus.OrderLineApi* | [**getOrderLineFiles**](docs/OrderLineApi.md#getOrderLineFiles) | **GET** /beta/orderLine/{orderLineId}/file | Get the files for an orderLine.
*infoplus.OrderLineApi* | [**getOrderLineTags**](docs/OrderLineApi.md#getOrderLineTags) | **GET** /beta/orderLine/{orderLineId}/tag | Get the tags for an orderLine.
*infoplus.OrderLineApi* | [**updateOrderLineCustomFields**](docs/OrderLineApi.md#updateOrderLineCustomFields) | **PUT** /beta/orderLine/customFields | Update an orderLine custom fields
*infoplus.OrderLineActivityApi* | [**addOrderLineActivity**](docs/OrderLineActivityApi.md#addOrderLineActivity) | **POST** /beta/orderLineActivity | Create an orderLineActivity
*infoplus.OrderLineActivityApi* | [**addOrderLineActivityAudit**](docs/OrderLineActivityApi.md#addOrderLineActivityAudit) | **PUT** /beta/orderLineActivity/{orderLineActivityId}/audit/{orderLineActivityAudit} | Add new audit for an orderLineActivity
*infoplus.OrderLineActivityApi* | [**addOrderLineActivityFile**](docs/OrderLineActivityApi.md#addOrderLineActivityFile) | **POST** /beta/orderLineActivity/{orderLineActivityId}/file/{fileName} | Attach a file to an orderLineActivity
*infoplus.OrderLineActivityApi* | [**addOrderLineActivityFileByURL**](docs/OrderLineActivityApi.md#addOrderLineActivityFileByURL) | **POST** /beta/orderLineActivity/{orderLineActivityId}/file | Attach a file to an orderLineActivity by URL.
*infoplus.OrderLineActivityApi* | [**addOrderLineActivityTag**](docs/OrderLineActivityApi.md#addOrderLineActivityTag) | **PUT** /beta/orderLineActivity/{orderLineActivityId}/tag/{orderLineActivityTag} | Add new tags for an orderLineActivity.
*infoplus.OrderLineActivityApi* | [**deleteOrderLineActivity**](docs/OrderLineActivityApi.md#deleteOrderLineActivity) | **DELETE** /beta/orderLineActivity/{orderLineActivityId} | Delete an orderLineActivity
*infoplus.OrderLineActivityApi* | [**deleteOrderLineActivityFile**](docs/OrderLineActivityApi.md#deleteOrderLineActivityFile) | **DELETE** /beta/orderLineActivity/{orderLineActivityId}/file/{fileId} | Delete a file for an orderLineActivity.
*infoplus.OrderLineActivityApi* | [**deleteOrderLineActivityTag**](docs/OrderLineActivityApi.md#deleteOrderLineActivityTag) | **DELETE** /beta/orderLineActivity/{orderLineActivityId}/tag/{orderLineActivityTag} | Delete a tag for an orderLineActivity.
*infoplus.OrderLineActivityApi* | [**getDuplicateOrderLineActivityById**](docs/OrderLineActivityApi.md#getDuplicateOrderLineActivityById) | **GET** /beta/orderLineActivity/duplicate/{orderLineActivityId} | Get a duplicated an orderLineActivity by id
*infoplus.OrderLineActivityApi* | [**getOrderLineActivityByFilter**](docs/OrderLineActivityApi.md#getOrderLineActivityByFilter) | **GET** /beta/orderLineActivity/search | Search orderLineActivitys by filter
*infoplus.OrderLineActivityApi* | [**getOrderLineActivityById**](docs/OrderLineActivityApi.md#getOrderLineActivityById) | **GET** /beta/orderLineActivity/{orderLineActivityId} | Get an orderLineActivity by id
*infoplus.OrderLineActivityApi* | [**getOrderLineActivityFiles**](docs/OrderLineActivityApi.md#getOrderLineActivityFiles) | **GET** /beta/orderLineActivity/{orderLineActivityId}/file | Get the files for an orderLineActivity.
*infoplus.OrderLineActivityApi* | [**getOrderLineActivityTags**](docs/OrderLineActivityApi.md#getOrderLineActivityTags) | **GET** /beta/orderLineActivity/{orderLineActivityId}/tag | Get the tags for an orderLineActivity.
*infoplus.OrderLineActivityApi* | [**updateOrderLineActivity**](docs/OrderLineActivityApi.md#updateOrderLineActivity) | **PUT** /beta/orderLineActivity | Update an orderLineActivity
*infoplus.OrderLoadProgramApi* | [**getOrderLoadProgramBySearchText**](docs/OrderLoadProgramApi.md#getOrderLoadProgramBySearchText) | **GET** /beta/orderLoadProgram/search | Search orderLoadPrograms
*infoplus.OrderLoadProgramApi* | [**getReqLoadProgramById**](docs/OrderLoadProgramApi.md#getReqLoadProgramById) | **GET** /beta/orderLoadProgram/{orderLoadProgramId} | Get an orderLoadProgram by id
*infoplus.OrderSourceApi* | [**addOrderSource**](docs/OrderSourceApi.md#addOrderSource) | **POST** /beta/orderSource | Create an orderSource
*infoplus.OrderSourceApi* | [**addOrderSourceAudit**](docs/OrderSourceApi.md#addOrderSourceAudit) | **PUT** /beta/orderSource/{orderSourceId}/audit/{orderSourceAudit} | Add new audit for an orderSource
*infoplus.OrderSourceApi* | [**addOrderSourceFile**](docs/OrderSourceApi.md#addOrderSourceFile) | **POST** /beta/orderSource/{orderSourceId}/file/{fileName} | Attach a file to an orderSource
*infoplus.OrderSourceApi* | [**addOrderSourceFileByURL**](docs/OrderSourceApi.md#addOrderSourceFileByURL) | **POST** /beta/orderSource/{orderSourceId}/file | Attach a file to an orderSource by URL.
*infoplus.OrderSourceApi* | [**addOrderSourceTag**](docs/OrderSourceApi.md#addOrderSourceTag) | **PUT** /beta/orderSource/{orderSourceId}/tag/{orderSourceTag} | Add new tags for an orderSource.
*infoplus.OrderSourceApi* | [**deleteOrderSource**](docs/OrderSourceApi.md#deleteOrderSource) | **DELETE** /beta/orderSource/{orderSourceId} | Delete an orderSource
*infoplus.OrderSourceApi* | [**deleteOrderSourceFile**](docs/OrderSourceApi.md#deleteOrderSourceFile) | **DELETE** /beta/orderSource/{orderSourceId}/file/{fileId} | Delete a file for an orderSource.
*infoplus.OrderSourceApi* | [**deleteOrderSourceTag**](docs/OrderSourceApi.md#deleteOrderSourceTag) | **DELETE** /beta/orderSource/{orderSourceId}/tag/{orderSourceTag} | Delete a tag for an orderSource.
*infoplus.OrderSourceApi* | [**getDuplicateOrderSourceById**](docs/OrderSourceApi.md#getDuplicateOrderSourceById) | **GET** /beta/orderSource/duplicate/{orderSourceId} | Get a duplicated an orderSource by id
*infoplus.OrderSourceApi* | [**getOrderSourceByFilter**](docs/OrderSourceApi.md#getOrderSourceByFilter) | **GET** /beta/orderSource/search | Search orderSources by filter
*infoplus.OrderSourceApi* | [**getOrderSourceById**](docs/OrderSourceApi.md#getOrderSourceById) | **GET** /beta/orderSource/{orderSourceId} | Get an orderSource by id
*infoplus.OrderSourceApi* | [**getOrderSourceFiles**](docs/OrderSourceApi.md#getOrderSourceFiles) | **GET** /beta/orderSource/{orderSourceId}/file | Get the files for an orderSource.
*infoplus.OrderSourceApi* | [**getOrderSourceTags**](docs/OrderSourceApi.md#getOrderSourceTags) | **GET** /beta/orderSource/{orderSourceId}/tag | Get the tags for an orderSource.
*infoplus.OrderSourceApi* | [**updateOrderSource**](docs/OrderSourceApi.md#updateOrderSource) | **PUT** /beta/orderSource | Update an orderSource
*infoplus.OrderSourceApi* | [**updateOrderSourceCustomFields**](docs/OrderSourceApi.md#updateOrderSourceCustomFields) | **PUT** /beta/orderSource/customFields | Update an orderSource custom fields
*infoplus.OrderSourceItemSetupApi* | [**addOrderSourceItemSetup**](docs/OrderSourceItemSetupApi.md#addOrderSourceItemSetup) | **POST** /beta/orderSourceItemSetup | Create an orderSourceItemSetup
*infoplus.OrderSourceItemSetupApi* | [**addOrderSourceItemSetupAudit**](docs/OrderSourceItemSetupApi.md#addOrderSourceItemSetupAudit) | **PUT** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/audit/{orderSourceItemSetupAudit} | Add new audit for an orderSourceItemSetup
*infoplus.OrderSourceItemSetupApi* | [**addOrderSourceItemSetupFile**](docs/OrderSourceItemSetupApi.md#addOrderSourceItemSetupFile) | **POST** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/file/{fileName} | Attach a file to an orderSourceItemSetup
*infoplus.OrderSourceItemSetupApi* | [**addOrderSourceItemSetupFileByURL**](docs/OrderSourceItemSetupApi.md#addOrderSourceItemSetupFileByURL) | **POST** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/file | Attach a file to an orderSourceItemSetup by URL.
*infoplus.OrderSourceItemSetupApi* | [**addOrderSourceItemSetupTag**](docs/OrderSourceItemSetupApi.md#addOrderSourceItemSetupTag) | **PUT** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/tag/{orderSourceItemSetupTag} | Add new tags for an orderSourceItemSetup.
*infoplus.OrderSourceItemSetupApi* | [**deleteOrderSourceItemSetup**](docs/OrderSourceItemSetupApi.md#deleteOrderSourceItemSetup) | **DELETE** /beta/orderSourceItemSetup/{orderSourceItemSetupId} | Delete an orderSourceItemSetup
*infoplus.OrderSourceItemSetupApi* | [**deleteOrderSourceItemSetupFile**](docs/OrderSourceItemSetupApi.md#deleteOrderSourceItemSetupFile) | **DELETE** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/file/{fileId} | Delete a file for an orderSourceItemSetup.
*infoplus.OrderSourceItemSetupApi* | [**deleteOrderSourceItemSetupTag**](docs/OrderSourceItemSetupApi.md#deleteOrderSourceItemSetupTag) | **DELETE** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/tag/{orderSourceItemSetupTag} | Delete a tag for an orderSourceItemSetup.
*infoplus.OrderSourceItemSetupApi* | [**getDuplicateOrderSourceItemSetupById**](docs/OrderSourceItemSetupApi.md#getDuplicateOrderSourceItemSetupById) | **GET** /beta/orderSourceItemSetup/duplicate/{orderSourceItemSetupId} | Get a duplicated an orderSourceItemSetup by id
*infoplus.OrderSourceItemSetupApi* | [**getOrderSourceItemSetupByFilter**](docs/OrderSourceItemSetupApi.md#getOrderSourceItemSetupByFilter) | **GET** /beta/orderSourceItemSetup/search | Search orderSourceItemSetups by filter
*infoplus.OrderSourceItemSetupApi* | [**getOrderSourceItemSetupById**](docs/OrderSourceItemSetupApi.md#getOrderSourceItemSetupById) | **GET** /beta/orderSourceItemSetup/{orderSourceItemSetupId} | Get an orderSourceItemSetup by id
*infoplus.OrderSourceItemSetupApi* | [**getOrderSourceItemSetupFiles**](docs/OrderSourceItemSetupApi.md#getOrderSourceItemSetupFiles) | **GET** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/file | Get the files for an orderSourceItemSetup.
*infoplus.OrderSourceItemSetupApi* | [**getOrderSourceItemSetupTags**](docs/OrderSourceItemSetupApi.md#getOrderSourceItemSetupTags) | **GET** /beta/orderSourceItemSetup/{orderSourceItemSetupId}/tag | Get the tags for an orderSourceItemSetup.
*infoplus.OrderSourceItemSetupApi* | [**updateOrderSourceItemSetup**](docs/OrderSourceItemSetupApi.md#updateOrderSourceItemSetup) | **PUT** /beta/orderSourceItemSetup | Update an orderSourceItemSetup
*infoplus.OrderSourceItemSetupApi* | [**updateOrderSourceItemSetupCustomFields**](docs/OrderSourceItemSetupApi.md#updateOrderSourceItemSetupCustomFields) | **PUT** /beta/orderSourceItemSetup/customFields | Update an orderSourceItemSetup custom fields
*infoplus.OrderSourceReservationApi* | [**addOrderSourceReservation**](docs/OrderSourceReservationApi.md#addOrderSourceReservation) | **POST** /beta/orderSourceReservation | Create an orderSourceReservation
*infoplus.OrderSourceReservationApi* | [**addOrderSourceReservationAudit**](docs/OrderSourceReservationApi.md#addOrderSourceReservationAudit) | **PUT** /beta/orderSourceReservation/{orderSourceReservationId}/audit/{orderSourceReservationAudit} | Add new audit for an orderSourceReservation
*infoplus.OrderSourceReservationApi* | [**addOrderSourceReservationFile**](docs/OrderSourceReservationApi.md#addOrderSourceReservationFile) | **POST** /beta/orderSourceReservation/{orderSourceReservationId}/file/{fileName} | Attach a file to an orderSourceReservation
*infoplus.OrderSourceReservationApi* | [**addOrderSourceReservationFileByURL**](docs/OrderSourceReservationApi.md#addOrderSourceReservationFileByURL) | **POST** /beta/orderSourceReservation/{orderSourceReservationId}/file | Attach a file to an orderSourceReservation by URL.
*infoplus.OrderSourceReservationApi* | [**addOrderSourceReservationTag**](docs/OrderSourceReservationApi.md#addOrderSourceReservationTag) | **PUT** /beta/orderSourceReservation/{orderSourceReservationId}/tag/{orderSourceReservationTag} | Add new tags for an orderSourceReservation.
*infoplus.OrderSourceReservationApi* | [**deleteOrderSourceReservation**](docs/OrderSourceReservationApi.md#deleteOrderSourceReservation) | **DELETE** /beta/orderSourceReservation/{orderSourceReservationId} | Delete an orderSourceReservation
*infoplus.OrderSourceReservationApi* | [**deleteOrderSourceReservationFile**](docs/OrderSourceReservationApi.md#deleteOrderSourceReservationFile) | **DELETE** /beta/orderSourceReservation/{orderSourceReservationId}/file/{fileId} | Delete a file for an orderSourceReservation.
*infoplus.OrderSourceReservationApi* | [**deleteOrderSourceReservationTag**](docs/OrderSourceReservationApi.md#deleteOrderSourceReservationTag) | **DELETE** /beta/orderSourceReservation/{orderSourceReservationId}/tag/{orderSourceReservationTag} | Delete a tag for an orderSourceReservation.
*infoplus.OrderSourceReservationApi* | [**getDuplicateOrderSourceReservationById**](docs/OrderSourceReservationApi.md#getDuplicateOrderSourceReservationById) | **GET** /beta/orderSourceReservation/duplicate/{orderSourceReservationId} | Get a duplicated an orderSourceReservation by id
*infoplus.OrderSourceReservationApi* | [**getOrderSourceReservationByFilter**](docs/OrderSourceReservationApi.md#getOrderSourceReservationByFilter) | **GET** /beta/orderSourceReservation/search | Search orderSourceReservations by filter
*infoplus.OrderSourceReservationApi* | [**getOrderSourceReservationById**](docs/OrderSourceReservationApi.md#getOrderSourceReservationById) | **GET** /beta/orderSourceReservation/{orderSourceReservationId} | Get an orderSourceReservation by id
*infoplus.OrderSourceReservationApi* | [**getOrderSourceReservationFiles**](docs/OrderSourceReservationApi.md#getOrderSourceReservationFiles) | **GET** /beta/orderSourceReservation/{orderSourceReservationId}/file | Get the files for an orderSourceReservation.
*infoplus.OrderSourceReservationApi* | [**getOrderSourceReservationTags**](docs/OrderSourceReservationApi.md#getOrderSourceReservationTags) | **GET** /beta/orderSourceReservation/{orderSourceReservationId}/tag | Get the tags for an orderSourceReservation.
*infoplus.OrderSourceReservationApi* | [**updateOrderSourceReservation**](docs/OrderSourceReservationApi.md#updateOrderSourceReservation) | **PUT** /beta/orderSourceReservation | Update an orderSourceReservation
*infoplus.OrderSourceReservationApi* | [**updateOrderSourceReservationCustomFields**](docs/OrderSourceReservationApi.md#updateOrderSourceReservationCustomFields) | **PUT** /beta/orderSourceReservation/customFields | Update an orderSourceReservation custom fields
*infoplus.OrderSourceStockStatusApi* | [**addOrderSourceStockStatusAudit**](docs/OrderSourceStockStatusApi.md#addOrderSourceStockStatusAudit) | **PUT** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/audit/{orderSourceStockStatusAudit} | Add new audit for an orderSourceStockStatus
*infoplus.OrderSourceStockStatusApi* | [**addOrderSourceStockStatusFile**](docs/OrderSourceStockStatusApi.md#addOrderSourceStockStatusFile) | **POST** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/file/{fileName} | Attach a file to an orderSourceStockStatus
*infoplus.OrderSourceStockStatusApi* | [**addOrderSourceStockStatusFileByURL**](docs/OrderSourceStockStatusApi.md#addOrderSourceStockStatusFileByURL) | **POST** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/file | Attach a file to an orderSourceStockStatus by URL.
*infoplus.OrderSourceStockStatusApi* | [**addOrderSourceStockStatusTag**](docs/OrderSourceStockStatusApi.md#addOrderSourceStockStatusTag) | **PUT** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/tag/{orderSourceStockStatusTag} | Add new tags for an orderSourceStockStatus.
*infoplus.OrderSourceStockStatusApi* | [**deleteOrderSourceStockStatusFile**](docs/OrderSourceStockStatusApi.md#deleteOrderSourceStockStatusFile) | **DELETE** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/file/{fileId} | Delete a file for an orderSourceStockStatus.
*infoplus.OrderSourceStockStatusApi* | [**deleteOrderSourceStockStatusTag**](docs/OrderSourceStockStatusApi.md#deleteOrderSourceStockStatusTag) | **DELETE** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/tag/{orderSourceStockStatusTag} | Delete a tag for an orderSourceStockStatus.
*infoplus.OrderSourceStockStatusApi* | [**getDuplicateOrderSourceStockStatusById**](docs/OrderSourceStockStatusApi.md#getDuplicateOrderSourceStockStatusById) | **GET** /beta/orderSourceStockStatus/duplicate/{orderSourceStockStatusId} | Get a duplicated an orderSourceStockStatus by id
*infoplus.OrderSourceStockStatusApi* | [**getOrderSourceStockStatusByFilter**](docs/OrderSourceStockStatusApi.md#getOrderSourceStockStatusByFilter) | **GET** /beta/orderSourceStockStatus/search | Search orderSourceStockStatuses by filter
*infoplus.OrderSourceStockStatusApi* | [**getOrderSourceStockStatusById**](docs/OrderSourceStockStatusApi.md#getOrderSourceStockStatusById) | **GET** /beta/orderSourceStockStatus/{orderSourceStockStatusId} | Get an orderSourceStockStatus by id
*infoplus.OrderSourceStockStatusApi* | [**getOrderSourceStockStatusFiles**](docs/OrderSourceStockStatusApi.md#getOrderSourceStockStatusFiles) | **GET** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/file | Get the files for an orderSourceStockStatus.
*infoplus.OrderSourceStockStatusApi* | [**getOrderSourceStockStatusTags**](docs/OrderSourceStockStatusApi.md#getOrderSourceStockStatusTags) | **GET** /beta/orderSourceStockStatus/{orderSourceStockStatusId}/tag | Get the tags for an orderSourceStockStatus.
*infoplus.OverrideReturnAddressApi* | [**addOverrideReturnAddress**](docs/OverrideReturnAddressApi.md#addOverrideReturnAddress) | **POST** /beta/overrideReturnAddress | Create an overrideReturnAddress
*infoplus.OverrideReturnAddressApi* | [**addOverrideReturnAddressAudit**](docs/OverrideReturnAddressApi.md#addOverrideReturnAddressAudit) | **PUT** /beta/overrideReturnAddress/{overrideReturnAddressId}/audit/{overrideReturnAddressAudit} | Add new audit for an overrideReturnAddress
*infoplus.OverrideReturnAddressApi* | [**addOverrideReturnAddressFile**](docs/OverrideReturnAddressApi.md#addOverrideReturnAddressFile) | **POST** /beta/overrideReturnAddress/{overrideReturnAddressId}/file/{fileName} | Attach a file to an overrideReturnAddress
*infoplus.OverrideReturnAddressApi* | [**addOverrideReturnAddressFileByURL**](docs/OverrideReturnAddressApi.md#addOverrideReturnAddressFileByURL) | **POST** /beta/overrideReturnAddress/{overrideReturnAddressId}/file | Attach a file to an overrideReturnAddress by URL.
*infoplus.OverrideReturnAddressApi* | [**addOverrideReturnAddressTag**](docs/OverrideReturnAddressApi.md#addOverrideReturnAddressTag) | **PUT** /beta/overrideReturnAddress/{overrideReturnAddressId}/tag/{overrideReturnAddressTag} | Add new tags for an overrideReturnAddress.
*infoplus.OverrideReturnAddressApi* | [**deleteOverrideReturnAddress**](docs/OverrideReturnAddressApi.md#deleteOverrideReturnAddress) | **DELETE** /beta/overrideReturnAddress/{overrideReturnAddressId} | Delete an overrideReturnAddress
*infoplus.OverrideReturnAddressApi* | [**deleteOverrideReturnAddressFile**](docs/OverrideReturnAddressApi.md#deleteOverrideReturnAddressFile) | **DELETE** /beta/overrideReturnAddress/{overrideReturnAddressId}/file/{fileId} | Delete a file for an overrideReturnAddress.
*infoplus.OverrideReturnAddressApi* | [**deleteOverrideReturnAddressTag**](docs/OverrideReturnAddressApi.md#deleteOverrideReturnAddressTag) | **DELETE** /beta/overrideReturnAddress/{overrideReturnAddressId}/tag/{overrideReturnAddressTag} | Delete a tag for an overrideReturnAddress.
*infoplus.OverrideReturnAddressApi* | [**getDuplicateOverrideReturnAddressById**](docs/OverrideReturnAddressApi.md#getDuplicateOverrideReturnAddressById) | **GET** /beta/overrideReturnAddress/duplicate/{overrideReturnAddressId} | Get a duplicated an overrideReturnAddress by id
*infoplus.OverrideReturnAddressApi* | [**getOverrideReturnAddressByFilter**](docs/OverrideReturnAddressApi.md#getOverrideReturnAddressByFilter) | **GET** /beta/overrideReturnAddress/search | Search overrideReturnAddresses by filter
*infoplus.OverrideReturnAddressApi* | [**getOverrideReturnAddressById**](docs/OverrideReturnAddressApi.md#getOverrideReturnAddressById) | **GET** /beta/overrideReturnAddress/{overrideReturnAddressId} | Get an overrideReturnAddress by id
*infoplus.OverrideReturnAddressApi* | [**getOverrideReturnAddressFiles**](docs/OverrideReturnAddressApi.md#getOverrideReturnAddressFiles) | **GET** /beta/overrideReturnAddress/{overrideReturnAddressId}/file | Get the files for an overrideReturnAddress.
*infoplus.OverrideReturnAddressApi* | [**getOverrideReturnAddressTags**](docs/OverrideReturnAddressApi.md#getOverrideReturnAddressTags) | **GET** /beta/overrideReturnAddress/{overrideReturnAddressId}/tag | Get the tags for an overrideReturnAddress.
*infoplus.OverrideReturnAddressApi* | [**updateOverrideReturnAddress**](docs/OverrideReturnAddressApi.md#updateOverrideReturnAddress) | **PUT** /beta/overrideReturnAddress | Update an overrideReturnAddress
*infoplus.OverrideReturnAddressApi* | [**updateOverrideReturnAddressCustomFields**](docs/OverrideReturnAddressApi.md#updateOverrideReturnAddressCustomFields) | **PUT** /beta/overrideReturnAddress/customFields | Update an overrideReturnAddress custom fields
*infoplus.PackingDetailApi* | [**addPackingDetailAudit**](docs/PackingDetailApi.md#addPackingDetailAudit) | **PUT** /beta/packingDetail/{packingDetailId}/audit/{packingDetailAudit} | Add new audit for a packingDetail
*infoplus.PackingDetailApi* | [**addPackingDetailFile**](docs/PackingDetailApi.md#addPackingDetailFile) | **POST** /beta/packingDetail/{packingDetailId}/file/{fileName} | Attach a file to a packingDetail
*infoplus.PackingDetailApi* | [**addPackingDetailFileByURL**](docs/PackingDetailApi.md#addPackingDetailFileByURL) | **POST** /beta/packingDetail/{packingDetailId}/file | Attach a file to a packingDetail by URL.
*infoplus.PackingDetailApi* | [**addPackingDetailTag**](docs/PackingDetailApi.md#addPackingDetailTag) | **PUT** /beta/packingDetail/{packingDetailId}/tag/{packingDetailTag} | Add new tags for a packingDetail.
*infoplus.PackingDetailApi* | [**deletePackingDetailFile**](docs/PackingDetailApi.md#deletePackingDetailFile) | **DELETE** /beta/packingDetail/{packingDetailId}/file/{fileId} | Delete a file for a packingDetail.
*infoplus.PackingDetailApi* | [**deletePackingDetailTag**](docs/PackingDetailApi.md#deletePackingDetailTag) | **DELETE** /beta/packingDetail/{packingDetailId}/tag/{packingDetailTag} | Delete a tag for a packingDetail.
*infoplus.PackingDetailApi* | [**getDuplicatePackingDetailById**](docs/PackingDetailApi.md#getDuplicatePackingDetailById) | **GET** /beta/packingDetail/duplicate/{packingDetailId} | Get a duplicated a packingDetail by id
*infoplus.PackingDetailApi* | [**getPackingDetailByFilter**](docs/PackingDetailApi.md#getPackingDetailByFilter) | **GET** /beta/packingDetail/search | Search packingDetails by filter
*infoplus.PackingDetailApi* | [**getPackingDetailById**](docs/PackingDetailApi.md#getPackingDetailById) | **GET** /beta/packingDetail/{packingDetailId} | Get a packingDetail by id
*infoplus.PackingDetailApi* | [**getPackingDetailFiles**](docs/PackingDetailApi.md#getPackingDetailFiles) | **GET** /beta/packingDetail/{packingDetailId}/file | Get the files for a packingDetail.
*infoplus.PackingDetailApi* | [**getPackingDetailTags**](docs/PackingDetailApi.md#getPackingDetailTags) | **GET** /beta/packingDetail/{packingDetailId}/tag | Get the tags for a packingDetail.
*infoplus.PackingDetailApi* | [**updatePackingDetailCustomFields**](docs/PackingDetailApi.md#updatePackingDetailCustomFields) | **PUT** /beta/packingDetail/customFields | Update a packingDetail custom fields
*infoplus.PackingPlanApi* | [**addPackingPlan**](docs/PackingPlanApi.md#addPackingPlan) | **POST** /beta/packingPlan | Create a packingPlan
*infoplus.PackingPlanApi* | [**addPackingPlanAudit**](docs/PackingPlanApi.md#addPackingPlanAudit) | **PUT** /beta/packingPlan/{packingPlanId}/audit/{packingPlanAudit} | Add new audit for a packingPlan
*infoplus.PackingPlanApi* | [**addPackingPlanFile**](docs/PackingPlanApi.md#addPackingPlanFile) | **POST** /beta/packingPlan/{packingPlanId}/file/{fileName} | Attach a file to a packingPlan
*infoplus.PackingPlanApi* | [**addPackingPlanFileByURL**](docs/PackingPlanApi.md#addPackingPlanFileByURL) | **POST** /beta/packingPlan/{packingPlanId}/file | Attach a file to a packingPlan by URL.
*infoplus.PackingPlanApi* | [**addPackingPlanTag**](docs/PackingPlanApi.md#addPackingPlanTag) | **PUT** /beta/packingPlan/{packingPlanId}/tag/{packingPlanTag} | Add new tags for a packingPlan.
*infoplus.PackingPlanApi* | [**deletePackingPlan**](docs/PackingPlanApi.md#deletePackingPlan) | **DELETE** /beta/packingPlan/{packingPlanId} | Delete a packingPlan
*infoplus.PackingPlanApi* | [**deletePackingPlanFile**](docs/PackingPlanApi.md#deletePackingPlanFile) | **DELETE** /beta/packingPlan/{packingPlanId}/file/{fileId} | Delete a file for a packingPlan.
*infoplus.PackingPlanApi* | [**deletePackingPlanTag**](docs/PackingPlanApi.md#deletePackingPlanTag) | **DELETE** /beta/packingPlan/{packingPlanId}/tag/{packingPlanTag} | Delete a tag for a packingPlan.
*infoplus.PackingPlanApi* | [**getDuplicatePackingPlanById**](docs/PackingPlanApi.md#getDuplicatePackingPlanById) | **GET** /beta/packingPlan/duplicate/{packingPlanId} | Get a duplicated a packingPlan by id
*infoplus.PackingPlanApi* | [**getPackingPlanByFilter**](docs/PackingPlanApi.md#getPackingPlanByFilter) | **GET** /beta/packingPlan/search | Search packingPlans by filter
*infoplus.PackingPlanApi* | [**getPackingPlanById**](docs/PackingPlanApi.md#getPackingPlanById) | **GET** /beta/packingPlan/{packingPlanId} | Get a packingPlan by id
*infoplus.PackingPlanApi* | [**getPackingPlanFiles**](docs/PackingPlanApi.md#getPackingPlanFiles) | **GET** /beta/packingPlan/{packingPlanId}/file | Get the files for a packingPlan.
*infoplus.PackingPlanApi* | [**getPackingPlanTags**](docs/PackingPlanApi.md#getPackingPlanTags) | **GET** /beta/packingPlan/{packingPlanId}/tag | Get the tags for a packingPlan.
*infoplus.PackingPlanApi* | [**updatePackingPlan**](docs/PackingPlanApi.md#updatePackingPlan) | **PUT** /beta/packingPlan | Update a packingPlan
*infoplus.PackingPlanApi* | [**updatePackingPlanCustomFields**](docs/PackingPlanApi.md#updatePackingPlanCustomFields) | **PUT** /beta/packingPlan/customFields | Update a packingPlan custom fields
*infoplus.PackingPlanDetailApi* | [**addPackingPlanDetailAudit**](docs/PackingPlanDetailApi.md#addPackingPlanDetailAudit) | **PUT** /beta/packingPlanDetail/{packingPlanDetailId}/audit/{packingPlanDetailAudit} | Add new audit for a packingPlanDetail
*infoplus.PackingPlanDetailApi* | [**addPackingPlanDetailFile**](docs/PackingPlanDetailApi.md#addPackingPlanDetailFile) | **POST** /beta/packingPlanDetail/{packingPlanDetailId}/file/{fileName} | Attach a file to a packingPlanDetail
*infoplus.PackingPlanDetailApi* | [**addPackingPlanDetailFileByURL**](docs/PackingPlanDetailApi.md#addPackingPlanDetailFileByURL) | **POST** /beta/packingPlanDetail/{packingPlanDetailId}/file | Attach a file to a packingPlanDetail by URL.
*infoplus.PackingPlanDetailApi* | [**addPackingPlanDetailTag**](docs/PackingPlanDetailApi.md#addPackingPlanDetailTag) | **PUT** /beta/packingPlanDetail/{packingPlanDetailId}/tag/{packingPlanDetailTag} | Add new tags for a packingPlanDetail.
*infoplus.PackingPlanDetailApi* | [**deletePackingPlanDetailFile**](docs/PackingPlanDetailApi.md#deletePackingPlanDetailFile) | **DELETE** /beta/packingPlanDetail/{packingPlanDetailId}/file/{fileId} | Delete a file for a packingPlanDetail.
*infoplus.PackingPlanDetailApi* | [**deletePackingPlanDetailTag**](docs/PackingPlanDetailApi.md#deletePackingPlanDetailTag) | **DELETE** /beta/packingPlanDetail/{packingPlanDetailId}/tag/{packingPlanDetailTag} | Delete a tag for a packingPlanDetail.
*infoplus.PackingPlanDetailApi* | [**getDuplicatePackingPlanDetailById**](docs/PackingPlanDetailApi.md#getDuplicatePackingPlanDetailById) | **GET** /beta/packingPlanDetail/duplicate/{packingPlanDetailId} | Get a duplicated a packingPlanDetail by id
*infoplus.PackingPlanDetailApi* | [**getPackingPlanDetailByFilter**](docs/PackingPlanDetailApi.md#getPackingPlanDetailByFilter) | **GET** /beta/packingPlanDetail/search | Search packingPlanDetails by filter
*infoplus.PackingPlanDetailApi* | [**getPackingPlanDetailById**](docs/PackingPlanDetailApi.md#getPackingPlanDetailById) | **GET** /beta/packingPlanDetail/{packingPlanDetailId} | Get a packingPlanDetail by id
*infoplus.PackingPlanDetailApi* | [**getPackingPlanDetailFiles**](docs/PackingPlanDetailApi.md#getPackingPlanDetailFiles) | **GET** /beta/packingPlanDetail/{packingPlanDetailId}/file | Get the files for a packingPlanDetail.
*infoplus.PackingPlanDetailApi* | [**getPackingPlanDetailTags**](docs/PackingPlanDetailApi.md#getPackingPlanDetailTags) | **GET** /beta/packingPlanDetail/{packingPlanDetailId}/tag | Get the tags for a packingPlanDetail.
*infoplus.PackingPlanDetailApi* | [**updatePackingPlanDetailCustomFields**](docs/PackingPlanDetailApi.md#updatePackingPlanDetailCustomFields) | **PUT** /beta/packingPlanDetail/customFields | Update a packingPlanDetail custom fields
*infoplus.PackingSlipTemplateLineExtraDataEnumApi* | [**getPackingSlipTemplateLineExtraDataEnumById**](docs/PackingSlipTemplateLineExtraDataEnumApi.md#getPackingSlipTemplateLineExtraDataEnumById) | **GET** /beta/packingSlipTemplateLineExtraDataEnum/{packingSlipTemplateLineExtraDataEnumId} | Get a packingSlipTemplateLineExtraDataEnum by id
*infoplus.PackingSlipTemplateLineExtraDataEnumApi* | [**getPackingSlipTemplateLineExtraDataEnumBySearchText**](docs/PackingSlipTemplateLineExtraDataEnumApi.md#getPackingSlipTemplateLineExtraDataEnumBySearchText) | **GET** /beta/packingSlipTemplateLineExtraDataEnum/search | Search packingSlipTemplateLineExtraDataEnums
*infoplus.PackingSlipTemplateLineItemDescriptionEnumApi* | [**getPackingSlipTemplateLineItemDescriptionEnumById**](docs/PackingSlipTemplateLineItemDescriptionEnumApi.md#getPackingSlipTemplateLineItemDescriptionEnumById) | **GET** /beta/packingSlipTemplateLineItemDescriptionEnum/{packingSlipTemplateLineItemDescriptionEnumId} | Get a packingSlipTemplateLineItemDescriptionEnum by id
*infoplus.PackingSlipTemplateLineItemDescriptionEnumApi* | [**getPackingSlipTemplateLineItemDescriptionEnumBySearchText**](docs/PackingSlipTemplateLineItemDescriptionEnumApi.md#getPackingSlipTemplateLineItemDescriptionEnumBySearchText) | **GET** /beta/packingSlipTemplateLineItemDescriptionEnum/search | Search packingSlipTemplateLineItemDescriptionEnums
*infoplus.PalletTypeApi* | [**addPalletType**](docs/PalletTypeApi.md#addPalletType) | **POST** /beta/palletType | Create a palletType
*infoplus.PalletTypeApi* | [**addPalletTypeAudit**](docs/PalletTypeApi.md#addPalletTypeAudit) | **PUT** /beta/palletType/{palletTypeId}/audit/{palletTypeAudit} | Add new audit for a palletType
*infoplus.PalletTypeApi* | [**addPalletTypeFile**](docs/PalletTypeApi.md#addPalletTypeFile) | **POST** /beta/palletType/{palletTypeId}/file/{fileName} | Attach a file to a palletType
*infoplus.PalletTypeApi* | [**addPalletTypeFileByURL**](docs/PalletTypeApi.md#addPalletTypeFileByURL) | **POST** /beta/palletType/{palletTypeId}/file | Attach a file to a palletType by URL.
*infoplus.PalletTypeApi* | [**addPalletTypeTag**](docs/PalletTypeApi.md#addPalletTypeTag) | **PUT** /beta/palletType/{palletTypeId}/tag/{palletTypeTag} | Add new tags for a palletType.
*infoplus.PalletTypeApi* | [**deletePalletType**](docs/PalletTypeApi.md#deletePalletType) | **DELETE** /beta/palletType/{palletTypeId} | Delete a palletType
*infoplus.PalletTypeApi* | [**deletePalletTypeFile**](docs/PalletTypeApi.md#deletePalletTypeFile) | **DELETE** /beta/palletType/{palletTypeId}/file/{fileId} | Delete a file for a palletType.
*infoplus.PalletTypeApi* | [**deletePalletTypeTag**](docs/PalletTypeApi.md#deletePalletTypeTag) | **DELETE** /beta/palletType/{palletTypeId}/tag/{palletTypeTag} | Delete a tag for a palletType.
*infoplus.PalletTypeApi* | [**getDuplicatePalletTypeById**](docs/PalletTypeApi.md#getDuplicatePalletTypeById) | **GET** /beta/palletType/duplicate/{palletTypeId} | Get a duplicated a palletType by id
*infoplus.PalletTypeApi* | [**getPalletTypeByFilter**](docs/PalletTypeApi.md#getPalletTypeByFilter) | **GET** /beta/palletType/search | Search palletTypes by filter
*infoplus.PalletTypeApi* | [**getPalletTypeById**](docs/PalletTypeApi.md#getPalletTypeById) | **GET** /beta/palletType/{palletTypeId} | Get a palletType by id
*infoplus.PalletTypeApi* | [**getPalletTypeFiles**](docs/PalletTypeApi.md#getPalletTypeFiles) | **GET** /beta/palletType/{palletTypeId}/file | Get the files for a palletType.
*infoplus.PalletTypeApi* | [**getPalletTypeTags**](docs/PalletTypeApi.md#getPalletTypeTags) | **GET** /beta/palletType/{palletTypeId}/tag | Get the tags for a palletType.
*infoplus.PalletTypeApi* | [**updatePalletType**](docs/PalletTypeApi.md#updatePalletType) | **PUT** /beta/palletType | Update a palletType
*infoplus.PalletTypeApi* | [**updatePalletTypeCustomFields**](docs/PalletTypeApi.md#updatePalletTypeCustomFields) | **PUT** /beta/palletType/customFields | Update a palletType custom fields
*infoplus.ParcelAccountApi* | [**addParcelAccount**](docs/ParcelAccountApi.md#addParcelAccount) | **POST** /beta/parcelAccount | Create a parcelAccount
*infoplus.ParcelAccountApi* | [**addParcelAccountAudit**](docs/ParcelAccountApi.md#addParcelAccountAudit) | **PUT** /beta/parcelAccount/{parcelAccountId}/audit/{parcelAccountAudit} | Add new audit for a parcelAccount
*infoplus.ParcelAccountApi* | [**addParcelAccountFile**](docs/ParcelAccountApi.md#addParcelAccountFile) | **POST** /beta/parcelAccount/{parcelAccountId}/file/{fileName} | Attach a file to a parcelAccount
*infoplus.ParcelAccountApi* | [**addParcelAccountFileByURL**](docs/ParcelAccountApi.md#addParcelAccountFileByURL) | **POST** /beta/parcelAccount/{parcelAccountId}/file | Attach a file to a parcelAccount by URL.
*infoplus.ParcelAccountApi* | [**addParcelAccountTag**](docs/ParcelAccountApi.md#addParcelAccountTag) | **PUT** /beta/parcelAccount/{parcelAccountId}/tag/{parcelAccountTag} | Add new tags for a parcelAccount.
*infoplus.ParcelAccountApi* | [**deleteParcelAccountFile**](docs/ParcelAccountApi.md#deleteParcelAccountFile) | **DELETE** /beta/parcelAccount/{parcelAccountId}/file/{fileId} | Delete a file for a parcelAccount.
*infoplus.ParcelAccountApi* | [**deleteParcelAccountTag**](docs/ParcelAccountApi.md#deleteParcelAccountTag) | **DELETE** /beta/parcelAccount/{parcelAccountId}/tag/{parcelAccountTag} | Delete a tag for a parcelAccount.
*infoplus.ParcelAccountApi* | [**getDuplicateParcelAccountById**](docs/ParcelAccountApi.md#getDuplicateParcelAccountById) | **GET** /beta/parcelAccount/duplicate/{parcelAccountId} | Get a duplicated a parcelAccount by id
*infoplus.ParcelAccountApi* | [**getParcelAccountByFilter**](docs/ParcelAccountApi.md#getParcelAccountByFilter) | **GET** /beta/parcelAccount/search | Search parcelAccounts by filter
*infoplus.ParcelAccountApi* | [**getParcelAccountById**](docs/ParcelAccountApi.md#getParcelAccountById) | **GET** /beta/parcelAccount/{parcelAccountId} | Get a parcelAccount by id
*infoplus.ParcelAccountApi* | [**getParcelAccountFiles**](docs/ParcelAccountApi.md#getParcelAccountFiles) | **GET** /beta/parcelAccount/{parcelAccountId}/file | Get the files for a parcelAccount.
*infoplus.ParcelAccountApi* | [**getParcelAccountTags**](docs/ParcelAccountApi.md#getParcelAccountTags) | **GET** /beta/parcelAccount/{parcelAccountId}/tag | Get the tags for a parcelAccount.
*infoplus.ParcelAccountApi* | [**updateParcelAccount**](docs/ParcelAccountApi.md#updateParcelAccount) | **PUT** /beta/parcelAccount | Update a parcelAccount
*infoplus.ParcelAccountApi* | [**updateParcelAccountCustomFields**](docs/ParcelAccountApi.md#updateParcelAccountCustomFields) | **PUT** /beta/parcelAccount/customFields | Update a parcelAccount custom fields
*infoplus.ParcelInvoiceApi* | [**addParcelInvoiceAudit**](docs/ParcelInvoiceApi.md#addParcelInvoiceAudit) | **PUT** /beta/parcelInvoice/{parcelInvoiceId}/audit/{parcelInvoiceAudit} | Add new audit for a parcelInvoice
*infoplus.ParcelInvoiceApi* | [**addParcelInvoiceFile**](docs/ParcelInvoiceApi.md#addParcelInvoiceFile) | **POST** /beta/parcelInvoice/{parcelInvoiceId}/file/{fileName} | Attach a file to a parcelInvoice
*infoplus.ParcelInvoiceApi* | [**addParcelInvoiceFileByURL**](docs/ParcelInvoiceApi.md#addParcelInvoiceFileByURL) | **POST** /beta/parcelInvoice/{parcelInvoiceId}/file | Attach a file to a parcelInvoice by URL.
*infoplus.ParcelInvoiceApi* | [**addParcelInvoiceTag**](docs/ParcelInvoiceApi.md#addParcelInvoiceTag) | **PUT** /beta/parcelInvoice/{parcelInvoiceId}/tag/{parcelInvoiceTag} | Add new tags for a parcelInvoice.
*infoplus.ParcelInvoiceApi* | [**deleteParcelInvoice**](docs/ParcelInvoiceApi.md#deleteParcelInvoice) | **DELETE** /beta/parcelInvoice/{parcelInvoiceId} | Delete a parcelInvoice
*infoplus.ParcelInvoiceApi* | [**deleteParcelInvoiceFile**](docs/ParcelInvoiceApi.md#deleteParcelInvoiceFile) | **DELETE** /beta/parcelInvoice/{parcelInvoiceId}/file/{fileId} | Delete a file for a parcelInvoice.
*infoplus.ParcelInvoiceApi* | [**deleteParcelInvoiceTag**](docs/ParcelInvoiceApi.md#deleteParcelInvoiceTag) | **DELETE** /beta/parcelInvoice/{parcelInvoiceId}/tag/{parcelInvoiceTag} | Delete a tag for a parcelInvoice.
*infoplus.ParcelInvoiceApi* | [**getDuplicateParcelInvoiceById**](docs/ParcelInvoiceApi.md#getDuplicateParcelInvoiceById) | **GET** /beta/parcelInvoice/duplicate/{parcelInvoiceId} | Get a duplicated a parcelInvoice by id
*infoplus.ParcelInvoiceApi* | [**getParcelInvoiceByFilter**](docs/ParcelInvoiceApi.md#getParcelInvoiceByFilter) | **GET** /beta/parcelInvoice/search | Search parcelInvoices by filter
*infoplus.ParcelInvoiceApi* | [**getParcelInvoiceById**](docs/ParcelInvoiceApi.md#getParcelInvoiceById) | **GET** /beta/parcelInvoice/{parcelInvoiceId} | Get a parcelInvoice by id
*infoplus.ParcelInvoiceApi* | [**getParcelInvoiceFiles**](docs/ParcelInvoiceApi.md#getParcelInvoiceFiles) | **GET** /beta/parcelInvoice/{parcelInvoiceId}/file | Get the files for a parcelInvoice.
*infoplus.ParcelInvoiceApi* | [**getParcelInvoiceTags**](docs/ParcelInvoiceApi.md#getParcelInvoiceTags) | **GET** /beta/parcelInvoice/{parcelInvoiceId}/tag | Get the tags for a parcelInvoice.
*infoplus.ParcelInvoiceLineApi* | [**addParcelInvoiceLineAudit**](docs/ParcelInvoiceLineApi.md#addParcelInvoiceLineAudit) | **PUT** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/audit/{parcelInvoiceLineAudit} | Add new audit for a parcelInvoiceLine
*infoplus.ParcelInvoiceLineApi* | [**addParcelInvoiceLineFile**](docs/ParcelInvoiceLineApi.md#addParcelInvoiceLineFile) | **POST** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/file/{fileName} | Attach a file to a parcelInvoiceLine
*infoplus.ParcelInvoiceLineApi* | [**addParcelInvoiceLineFileByURL**](docs/ParcelInvoiceLineApi.md#addParcelInvoiceLineFileByURL) | **POST** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/file | Attach a file to a parcelInvoiceLine by URL.
*infoplus.ParcelInvoiceLineApi* | [**addParcelInvoiceLineTag**](docs/ParcelInvoiceLineApi.md#addParcelInvoiceLineTag) | **PUT** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/tag/{parcelInvoiceLineTag} | Add new tags for a parcelInvoiceLine.
*infoplus.ParcelInvoiceLineApi* | [**deleteParcelInvoiceLineFile**](docs/ParcelInvoiceLineApi.md#deleteParcelInvoiceLineFile) | **DELETE** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/file/{fileId} | Delete a file for a parcelInvoiceLine.
*infoplus.ParcelInvoiceLineApi* | [**deleteParcelInvoiceLineTag**](docs/ParcelInvoiceLineApi.md#deleteParcelInvoiceLineTag) | **DELETE** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/tag/{parcelInvoiceLineTag} | Delete a tag for a parcelInvoiceLine.
*infoplus.ParcelInvoiceLineApi* | [**getDuplicateParcelInvoiceLineById**](docs/ParcelInvoiceLineApi.md#getDuplicateParcelInvoiceLineById) | **GET** /beta/parcelInvoiceLine/duplicate/{parcelInvoiceLineId} | Get a duplicated a parcelInvoiceLine by id
*infoplus.ParcelInvoiceLineApi* | [**getParcelInvoiceLineByFilter**](docs/ParcelInvoiceLineApi.md#getParcelInvoiceLineByFilter) | **GET** /beta/parcelInvoiceLine/search | Search parcelInvoiceLines by filter
*infoplus.ParcelInvoiceLineApi* | [**getParcelInvoiceLineById**](docs/ParcelInvoiceLineApi.md#getParcelInvoiceLineById) | **GET** /beta/parcelInvoiceLine/{parcelInvoiceLineId} | Get a parcelInvoiceLine by id
*infoplus.ParcelInvoiceLineApi* | [**getParcelInvoiceLineFiles**](docs/ParcelInvoiceLineApi.md#getParcelInvoiceLineFiles) | **GET** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/file | Get the files for a parcelInvoiceLine.
*infoplus.ParcelInvoiceLineApi* | [**getParcelInvoiceLineTags**](docs/ParcelInvoiceLineApi.md#getParcelInvoiceLineTags) | **GET** /beta/parcelInvoiceLine/{parcelInvoiceLineId}/tag | Get the tags for a parcelInvoiceLine.
*infoplus.ParcelInvoiceLineApi* | [**updateParcelInvoiceLine**](docs/ParcelInvoiceLineApi.md#updateParcelInvoiceLine) | **PUT** /beta/parcelInvoiceLine | Update a parcelInvoiceLine
*infoplus.PerpetualInventoryLogApi* | [**addPerpetualInventoryLogAudit**](docs/PerpetualInventoryLogApi.md#addPerpetualInventoryLogAudit) | **PUT** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/audit/{perpetualInventoryLogAudit} | Add new audit for a perpetualInventoryLog
*infoplus.PerpetualInventoryLogApi* | [**addPerpetualInventoryLogFile**](docs/PerpetualInventoryLogApi.md#addPerpetualInventoryLogFile) | **POST** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/file/{fileName} | Attach a file to a perpetualInventoryLog
*infoplus.PerpetualInventoryLogApi* | [**addPerpetualInventoryLogFileByURL**](docs/PerpetualInventoryLogApi.md#addPerpetualInventoryLogFileByURL) | **POST** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/file | Attach a file to a perpetualInventoryLog by URL.
*infoplus.PerpetualInventoryLogApi* | [**addPerpetualInventoryLogTag**](docs/PerpetualInventoryLogApi.md#addPerpetualInventoryLogTag) | **PUT** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/tag/{perpetualInventoryLogTag} | Add new tags for a perpetualInventoryLog.
*infoplus.PerpetualInventoryLogApi* | [**deletePerpetualInventoryLogFile**](docs/PerpetualInventoryLogApi.md#deletePerpetualInventoryLogFile) | **DELETE** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/file/{fileId} | Delete a file for a perpetualInventoryLog.
*infoplus.PerpetualInventoryLogApi* | [**deletePerpetualInventoryLogTag**](docs/PerpetualInventoryLogApi.md#deletePerpetualInventoryLogTag) | **DELETE** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/tag/{perpetualInventoryLogTag} | Delete a tag for a perpetualInventoryLog.
*infoplus.PerpetualInventoryLogApi* | [**getDuplicatePerpetualInventoryLogById**](docs/PerpetualInventoryLogApi.md#getDuplicatePerpetualInventoryLogById) | **GET** /beta/perpetualInventoryLog/duplicate/{perpetualInventoryLogId} | Get a duplicated a perpetualInventoryLog by id
*infoplus.PerpetualInventoryLogApi* | [**getPerpetualInventoryLogByFilter**](docs/PerpetualInventoryLogApi.md#getPerpetualInventoryLogByFilter) | **GET** /beta/perpetualInventoryLog/search | Search perpetualInventoryLogs by filter
*infoplus.PerpetualInventoryLogApi* | [**getPerpetualInventoryLogById**](docs/PerpetualInventoryLogApi.md#getPerpetualInventoryLogById) | **GET** /beta/perpetualInventoryLog/{perpetualInventoryLogId} | Get a perpetualInventoryLog by id
*infoplus.PerpetualInventoryLogApi* | [**getPerpetualInventoryLogFiles**](docs/PerpetualInventoryLogApi.md#getPerpetualInventoryLogFiles) | **GET** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/file | Get the files for a perpetualInventoryLog.
*infoplus.PerpetualInventoryLogApi* | [**getPerpetualInventoryLogTags**](docs/PerpetualInventoryLogApi.md#getPerpetualInventoryLogTags) | **GET** /beta/perpetualInventoryLog/{perpetualInventoryLogId}/tag | Get the tags for a perpetualInventoryLog.
*infoplus.PickFaceAssignmentApi* | [**addPickFaceAssignment**](docs/PickFaceAssignmentApi.md#addPickFaceAssignment) | **POST** /beta/pickFaceAssignment | Create a pickFaceAssignment
*infoplus.PickFaceAssignmentApi* | [**addPickFaceAssignmentAudit**](docs/PickFaceAssignmentApi.md#addPickFaceAssignmentAudit) | **PUT** /beta/pickFaceAssignment/{pickFaceAssignmentId}/audit/{pickFaceAssignmentAudit} | Add new audit for a pickFaceAssignment
*infoplus.PickFaceAssignmentApi* | [**addPickFaceAssignmentFile**](docs/PickFaceAssignmentApi.md#addPickFaceAssignmentFile) | **POST** /beta/pickFaceAssignment/{pickFaceAssignmentId}/file/{fileName} | Attach a file to a pickFaceAssignment
*infoplus.PickFaceAssignmentApi* | [**addPickFaceAssignmentFileByURL**](docs/PickFaceAssignmentApi.md#addPickFaceAssignmentFileByURL) | **POST** /beta/pickFaceAssignment/{pickFaceAssignmentId}/file | Attach a file to a pickFaceAssignment by URL.
*infoplus.PickFaceAssignmentApi* | [**addPickFaceAssignmentTag**](docs/PickFaceAssignmentApi.md#addPickFaceAssignmentTag) | **PUT** /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag/{pickFaceAssignmentTag} | Add new tags for a pickFaceAssignment.
*infoplus.PickFaceAssignmentApi* | [**deletePickFaceAssignment**](docs/PickFaceAssignmentApi.md#deletePickFaceAssignment) | **DELETE** /beta/pickFaceAssignment/{pickFaceAssignmentId} | Delete a pickFaceAssignment
*infoplus.PickFaceAssignmentApi* | [**deletePickFaceAssignmentFile**](docs/PickFaceAssignmentApi.md#deletePickFaceAssignmentFile) | **DELETE** /beta/pickFaceAssignment/{pickFaceAssignmentId}/file/{fileId} | Delete a file for a pickFaceAssignment.
*infoplus.PickFaceAssignmentApi* | [**deletePickFaceAssignmentTag**](docs/PickFaceAssignmentApi.md#deletePickFaceAssignmentTag) | **DELETE** /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag/{pickFaceAssignmentTag} | Delete a tag for a pickFaceAssignment.
*infoplus.PickFaceAssignmentApi* | [**getDuplicatePickFaceAssignmentById**](docs/PickFaceAssignmentApi.md#getDuplicatePickFaceAssignmentById) | **GET** /beta/pickFaceAssignment/duplicate/{pickFaceAssignmentId} | Get a duplicated a pickFaceAssignment by id
*infoplus.PickFaceAssignmentApi* | [**getPickFaceAssignmentByFilter**](docs/PickFaceAssignmentApi.md#getPickFaceAssignmentByFilter) | **GET** /beta/pickFaceAssignment/search | Search pickFaceAssignments by filter
*infoplus.PickFaceAssignmentApi* | [**getPickFaceAssignmentById**](docs/PickFaceAssignmentApi.md#getPickFaceAssignmentById) | **GET** /beta/pickFaceAssignment/{pickFaceAssignmentId} | Get a pickFaceAssignment by id
*infoplus.PickFaceAssignmentApi* | [**getPickFaceAssignmentFiles**](docs/PickFaceAssignmentApi.md#getPickFaceAssignmentFiles) | **GET** /beta/pickFaceAssignment/{pickFaceAssignmentId}/file | Get the files for a pickFaceAssignment.
*infoplus.PickFaceAssignmentApi* | [**getPickFaceAssignmentTags**](docs/PickFaceAssignmentApi.md#getPickFaceAssignmentTags) | **GET** /beta/pickFaceAssignment/{pickFaceAssignmentId}/tag | Get the tags for a pickFaceAssignment.
*infoplus.PickFaceAssignmentApi* | [**updatePickFaceAssignment**](docs/PickFaceAssignmentApi.md#updatePickFaceAssignment) | **PUT** /beta/pickFaceAssignment | Update a pickFaceAssignment
*infoplus.PickFaceAssignmentApi* | [**updatePickFaceAssignmentCustomFields**](docs/PickFaceAssignmentApi.md#updatePickFaceAssignmentCustomFields) | **PUT** /beta/pickFaceAssignment/customFields | Update a pickFaceAssignment custom fields
*infoplus.PredefinedCartonApi* | [**getPredefinedCartonById**](docs/PredefinedCartonApi.md#getPredefinedCartonById) | **GET** /beta/predefinedCarton/{predefinedCartonId} | Get a predefinedCarton by id
*infoplus.PredefinedCartonApi* | [**getPredefinedCartonBySearchText**](docs/PredefinedCartonApi.md#getPredefinedCartonBySearchText) | **GET** /beta/predefinedCarton/search | Search predefinedCartons
*infoplus.ProductTypeApi* | [**getProductTypeById**](docs/ProductTypeApi.md#getProductTypeById) | **GET** /beta/productType/{productTypeId} | Get a productType by id
*infoplus.ProductTypeApi* | [**getProductTypeBySearchText**](docs/ProductTypeApi.md#getProductTypeBySearchText) | **GET** /beta/productType/search | Search productTypes
*infoplus.ProductionLotApi* | [**addProductionLot**](docs/ProductionLotApi.md#addProductionLot) | **POST** /beta/productionLot | Create a productionLot
*infoplus.ProductionLotApi* | [**addProductionLotAudit**](docs/ProductionLotApi.md#addProductionLotAudit) | **PUT** /beta/productionLot/{productionLotId}/audit/{productionLotAudit} | Add new audit for a productionLot
*infoplus.ProductionLotApi* | [**addProductionLotFile**](docs/ProductionLotApi.md#addProductionLotFile) | **POST** /beta/productionLot/{productionLotId}/file/{fileName} | Attach a file to a productionLot
*infoplus.ProductionLotApi* | [**addProductionLotFileByURL**](docs/ProductionLotApi.md#addProductionLotFileByURL) | **POST** /beta/productionLot/{productionLotId}/file | Attach a file to a productionLot by URL.
*infoplus.ProductionLotApi* | [**addProductionLotTag**](docs/ProductionLotApi.md#addProductionLotTag) | **PUT** /beta/productionLot/{productionLotId}/tag/{productionLotTag} | Add new tags for a productionLot.
*infoplus.ProductionLotApi* | [**deleteProductionLot**](docs/ProductionLotApi.md#deleteProductionLot) | **DELETE** /beta/productionLot/{productionLotId} | Delete a productionLot
*infoplus.ProductionLotApi* | [**deleteProductionLotFile**](docs/ProductionLotApi.md#deleteProductionLotFile) | **DELETE** /beta/productionLot/{productionLotId}/file/{fileId} | Delete a file for a productionLot.
*infoplus.ProductionLotApi* | [**deleteProductionLotTag**](docs/ProductionLotApi.md#deleteProductionLotTag) | **DELETE** /beta/productionLot/{productionLotId}/tag/{productionLotTag} | Delete a tag for a productionLot.
*infoplus.ProductionLotApi* | [**getDuplicateProductionLotById**](docs/ProductionLotApi.md#getDuplicateProductionLotById) | **GET** /beta/productionLot/duplicate/{productionLotId} | Get a duplicated a productionLot by id
*infoplus.ProductionLotApi* | [**getProductionLotByFilter**](docs/ProductionLotApi.md#getProductionLotByFilter) | **GET** /beta/productionLot/search | Search productionLots by filter
*infoplus.ProductionLotApi* | [**getProductionLotById**](docs/ProductionLotApi.md#getProductionLotById) | **GET** /beta/productionLot/{productionLotId} | Get a productionLot by id
*infoplus.ProductionLotApi* | [**getProductionLotFiles**](docs/ProductionLotApi.md#getProductionLotFiles) | **GET** /beta/productionLot/{productionLotId}/file | Get the files for a productionLot.
*infoplus.ProductionLotApi* | [**getProductionLotTags**](docs/ProductionLotApi.md#getProductionLotTags) | **GET** /beta/productionLot/{productionLotId}/tag | Get the tags for a productionLot.
*infoplus.ProductionLotApi* | [**updateProductionLot**](docs/ProductionLotApi.md#updateProductionLot) | **PUT** /beta/productionLot | Update a productionLot
*infoplus.ProductionLotApi* | [**updateProductionLotCustomFields**](docs/ProductionLotApi.md#updateProductionLotCustomFields) | **PUT** /beta/productionLot/customFields | Update a productionLot custom fields
*infoplus.ProductionModelApi* | [**addProductionModel**](docs/ProductionModelApi.md#addProductionModel) | **POST** /beta/productionModel | Create a productionModel
*infoplus.ProductionModelApi* | [**addProductionModelAudit**](docs/ProductionModelApi.md#addProductionModelAudit) | **PUT** /beta/productionModel/{productionModelId}/audit/{productionModelAudit} | Add new audit for a productionModel
*infoplus.ProductionModelApi* | [**addProductionModelFile**](docs/ProductionModelApi.md#addProductionModelFile) | **POST** /beta/productionModel/{productionModelId}/file/{fileName} | Attach a file to a productionModel
*infoplus.ProductionModelApi* | [**addProductionModelFileByURL**](docs/ProductionModelApi.md#addProductionModelFileByURL) | **POST** /beta/productionModel/{productionModelId}/file | Attach a file to a productionModel by URL.
*infoplus.ProductionModelApi* | [**addProductionModelTag**](docs/ProductionModelApi.md#addProductionModelTag) | **PUT** /beta/productionModel/{productionModelId}/tag/{productionModelTag} | Add new tags for a productionModel.
*infoplus.ProductionModelApi* | [**deleteProductionModel**](docs/ProductionModelApi.md#deleteProductionModel) | **DELETE** /beta/productionModel/{productionModelId} | Delete a productionModel
*infoplus.ProductionModelApi* | [**deleteProductionModelFile**](docs/ProductionModelApi.md#deleteProductionModelFile) | **DELETE** /beta/productionModel/{productionModelId}/file/{fileId} | Delete a file for a productionModel.
*infoplus.ProductionModelApi* | [**deleteProductionModelTag**](docs/ProductionModelApi.md#deleteProductionModelTag) | **DELETE** /beta/productionModel/{productionModelId}/tag/{productionModelTag} | Delete a tag for a productionModel.
*infoplus.ProductionModelApi* | [**getDuplicateProductionModelById**](docs/ProductionModelApi.md#getDuplicateProductionModelById) | **GET** /beta/productionModel/duplicate/{productionModelId} | Get a duplicated a productionModel by id
*infoplus.ProductionModelApi* | [**getProductionModelByFilter**](docs/ProductionModelApi.md#getProductionModelByFilter) | **GET** /beta/productionModel/search | Search productionModels by filter
*infoplus.ProductionModelApi* | [**getProductionModelById**](docs/ProductionModelApi.md#getProductionModelById) | **GET** /beta/productionModel/{productionModelId} | Get a productionModel by id
*infoplus.ProductionModelApi* | [**getProductionModelFiles**](docs/ProductionModelApi.md#getProductionModelFiles) | **GET** /beta/productionModel/{productionModelId}/file | Get the files for a productionModel.
*infoplus.ProductionModelApi* | [**getProductionModelTags**](docs/ProductionModelApi.md#getProductionModelTags) | **GET** /beta/productionModel/{productionModelId}/tag | Get the tags for a productionModel.
*infoplus.ProductionModelApi* | [**updateProductionModel**](docs/ProductionModelApi.md#updateProductionModel) | **PUT** /beta/productionModel | Update a productionModel
*infoplus.ProductionModelApi* | [**updateProductionModelCustomFields**](docs/ProductionModelApi.md#updateProductionModelCustomFields) | **PUT** /beta/productionModel/customFields | Update a productionModel custom fields
*infoplus.QuickAdjustmentApi* | [**addQuickAdjustment**](docs/QuickAdjustmentApi.md#addQuickAdjustment) | **POST** /beta/quickAdjustment | Create a quickAdjustment
*infoplus.QuickAdjustmentApi* | [**addQuickAdjustmentAudit**](docs/QuickAdjustmentApi.md#addQuickAdjustmentAudit) | **PUT** /beta/quickAdjustment/{quickAdjustmentId}/audit/{quickAdjustmentAudit} | Add new audit for a quickAdjustment
*infoplus.QuickAdjustmentApi* | [**addQuickAdjustmentFile**](docs/QuickAdjustmentApi.md#addQuickAdjustmentFile) | **POST** /beta/quickAdjustment/{quickAdjustmentId}/file/{fileName} | Attach a file to a quickAdjustment
*infoplus.QuickAdjustmentApi* | [**addQuickAdjustmentFileByURL**](docs/QuickAdjustmentApi.md#addQuickAdjustmentFileByURL) | **POST** /beta/quickAdjustment/{quickAdjustmentId}/file | Attach a file to a quickAdjustment by URL.
*infoplus.QuickAdjustmentApi* | [**addQuickAdjustmentTag**](docs/QuickAdjustmentApi.md#addQuickAdjustmentTag) | **PUT** /beta/quickAdjustment/{quickAdjustmentId}/tag/{quickAdjustmentTag} | Add new tags for a quickAdjustment.
*infoplus.QuickAdjustmentApi* | [**deleteQuickAdjustment**](docs/QuickAdjustmentApi.md#deleteQuickAdjustment) | **DELETE** /beta/quickAdjustment/{quickAdjustmentId} | Delete a quickAdjustment
*infoplus.QuickAdjustmentApi* | [**deleteQuickAdjustmentFile**](docs/QuickAdjustmentApi.md#deleteQuickAdjustmentFile) | **DELETE** /beta/quickAdjustment/{quickAdjustmentId}/file/{fileId} | Delete a file for a quickAdjustment.
*infoplus.QuickAdjustmentApi* | [**deleteQuickAdjustmentTag**](docs/QuickAdjustmentApi.md#deleteQuickAdjustmentTag) | **DELETE** /beta/quickAdjustment/{quickAdjustmentId}/tag/{quickAdjustmentTag} | Delete a tag for a quickAdjustment.
*infoplus.QuickAdjustmentApi* | [**executeQuickAdjustment**](docs/QuickAdjustmentApi.md#executeQuickAdjustment) | **POST** /beta/quickAdjustment/executeQuickAdjustment | Run the ExecuteQuickAdjustment process.
*infoplus.QuickAdjustmentApi* | [**getDuplicateQuickAdjustmentById**](docs/QuickAdjustmentApi.md#getDuplicateQuickAdjustmentById) | **GET** /beta/quickAdjustment/duplicate/{quickAdjustmentId} | Get a duplicated a quickAdjustment by id
*infoplus.QuickAdjustmentApi* | [**getQuickAdjustmentByFilter**](docs/QuickAdjustmentApi.md#getQuickAdjustmentByFilter) | **GET** /beta/quickAdjustment/search | Search quickAdjustments by filter
*infoplus.QuickAdjustmentApi* | [**getQuickAdjustmentById**](docs/QuickAdjustmentApi.md#getQuickAdjustmentById) | **GET** /beta/quickAdjustment/{quickAdjustmentId} | Get a quickAdjustment by id
*infoplus.QuickAdjustmentApi* | [**getQuickAdjustmentFiles**](docs/QuickAdjustmentApi.md#getQuickAdjustmentFiles) | **GET** /beta/quickAdjustment/{quickAdjustmentId}/file | Get the files for a quickAdjustment.
*infoplus.QuickAdjustmentApi* | [**getQuickAdjustmentTags**](docs/QuickAdjustmentApi.md#getQuickAdjustmentTags) | **GET** /beta/quickAdjustment/{quickAdjustmentId}/tag | Get the tags for a quickAdjustment.
*infoplus.QuickAdjustmentApi* | [**updateQuickAdjustment**](docs/QuickAdjustmentApi.md#updateQuickAdjustment) | **PUT** /beta/quickAdjustment | Update a quickAdjustment
*infoplus.QuickAdjustmentApi* | [**updateQuickAdjustmentCustomFields**](docs/QuickAdjustmentApi.md#updateQuickAdjustmentCustomFields) | **PUT** /beta/quickAdjustment/customFields | Update a quickAdjustment custom fields
*infoplus.QuickReceiptApi* | [**addQuickReceipt**](docs/QuickReceiptApi.md#addQuickReceipt) | **POST** /beta/quickReceipt | Create a quickReceipt
*infoplus.QuickReceiptApi* | [**addQuickReceiptAudit**](docs/QuickReceiptApi.md#addQuickReceiptAudit) | **PUT** /beta/quickReceipt/{quickReceiptId}/audit/{quickReceiptAudit} | Add new audit for a quickReceipt
*infoplus.QuickReceiptApi* | [**addQuickReceiptFile**](docs/QuickReceiptApi.md#addQuickReceiptFile) | **POST** /beta/quickReceipt/{quickReceiptId}/file/{fileName} | Attach a file to a quickReceipt
*infoplus.QuickReceiptApi* | [**addQuickReceiptFileByURL**](docs/QuickReceiptApi.md#addQuickReceiptFileByURL) | **POST** /beta/quickReceipt/{quickReceiptId}/file | Attach a file to a quickReceipt by URL.
*infoplus.QuickReceiptApi* | [**addQuickReceiptTag**](docs/QuickReceiptApi.md#addQuickReceiptTag) | **PUT** /beta/quickReceipt/{quickReceiptId}/tag/{quickReceiptTag} | Add new tags for a quickReceipt.
*infoplus.QuickReceiptApi* | [**deleteQuickReceipt**](docs/QuickReceiptApi.md#deleteQuickReceipt) | **DELETE** /beta/quickReceipt/{quickReceiptId} | Delete a quickReceipt
*infoplus.QuickReceiptApi* | [**deleteQuickReceiptFile**](docs/QuickReceiptApi.md#deleteQuickReceiptFile) | **DELETE** /beta/quickReceipt/{quickReceiptId}/file/{fileId} | Delete a file for a quickReceipt.
*infoplus.QuickReceiptApi* | [**deleteQuickReceiptTag**](docs/QuickReceiptApi.md#deleteQuickReceiptTag) | **DELETE** /beta/quickReceipt/{quickReceiptId}/tag/{quickReceiptTag} | Delete a tag for a quickReceipt.
*infoplus.QuickReceiptApi* | [**executeQuickReceipt**](docs/QuickReceiptApi.md#executeQuickReceipt) | **POST** /beta/quickReceipt/executeQuickReceipt | Run the ExecuteQuickReceipt process.
*infoplus.QuickReceiptApi* | [**getDuplicateQuickReceiptById**](docs/QuickReceiptApi.md#getDuplicateQuickReceiptById) | **GET** /beta/quickReceipt/duplicate/{quickReceiptId} | Get a duplicated a quickReceipt by id
*infoplus.QuickReceiptApi* | [**getQuickReceiptByFilter**](docs/QuickReceiptApi.md#getQuickReceiptByFilter) | **GET** /beta/quickReceipt/search | Search quickReceipts by filter
*infoplus.QuickReceiptApi* | [**getQuickReceiptById**](docs/QuickReceiptApi.md#getQuickReceiptById) | **GET** /beta/quickReceipt/{quickReceiptId} | Get a quickReceipt by id
*infoplus.QuickReceiptApi* | [**getQuickReceiptFiles**](docs/QuickReceiptApi.md#getQuickReceiptFiles) | **GET** /beta/quickReceipt/{quickReceiptId}/file | Get the files for a quickReceipt.
*infoplus.QuickReceiptApi* | [**getQuickReceiptTags**](docs/QuickReceiptApi.md#getQuickReceiptTags) | **GET** /beta/quickReceipt/{quickReceiptId}/tag | Get the tags for a quickReceipt.
*infoplus.QuickReceiptApi* | [**updateQuickReceipt**](docs/QuickReceiptApi.md#updateQuickReceipt) | **PUT** /beta/quickReceipt | Update a quickReceipt
*infoplus.QuickReceiptApi* | [**updateQuickReceiptCustomFields**](docs/QuickReceiptApi.md#updateQuickReceiptCustomFields) | **PUT** /beta/quickReceipt/customFields | Update a quickReceipt custom fields
*infoplus.ReceivingProcessApi* | [**addReceivingProcessAudit**](docs/ReceivingProcessApi.md#addReceivingProcessAudit) | **PUT** /beta/receivingProcess/{receivingProcessId}/audit/{receivingProcessAudit} | Add new audit for a receivingProcess
*infoplus.ReceivingProcessApi* | [**addReceivingProcessFile**](docs/ReceivingProcessApi.md#addReceivingProcessFile) | **POST** /beta/receivingProcess/{receivingProcessId}/file/{fileName} | Attach a file to a receivingProcess
*infoplus.ReceivingProcessApi* | [**addReceivingProcessFileByURL**](docs/ReceivingProcessApi.md#addReceivingProcessFileByURL) | **POST** /beta/receivingProcess/{receivingProcessId}/file | Attach a file to a receivingProcess by URL.
*infoplus.ReceivingProcessApi* | [**addReceivingProcessTag**](docs/ReceivingProcessApi.md#addReceivingProcessTag) | **PUT** /beta/receivingProcess/{receivingProcessId}/tag/{receivingProcessTag} | Add new tags for a receivingProcess.
*infoplus.ReceivingProcessApi* | [**deleteReceivingProcessFile**](docs/ReceivingProcessApi.md#deleteReceivingProcessFile) | **DELETE** /beta/receivingProcess/{receivingProcessId}/file/{fileId} | Delete a file for a receivingProcess.
*infoplus.ReceivingProcessApi* | [**deleteReceivingProcessTag**](docs/ReceivingProcessApi.md#deleteReceivingProcessTag) | **DELETE** /beta/receivingProcess/{receivingProcessId}/tag/{receivingProcessTag} | Delete a tag for a receivingProcess.
*infoplus.ReceivingProcessApi* | [**getDuplicateReceivingProcessById**](docs/ReceivingProcessApi.md#getDuplicateReceivingProcessById) | **GET** /beta/receivingProcess/duplicate/{receivingProcessId} | Get a duplicated a receivingProcess by id
*infoplus.ReceivingProcessApi* | [**getReceivingProcessByFilter**](docs/ReceivingProcessApi.md#getReceivingProcessByFilter) | **GET** /beta/receivingProcess/search | Search receivingProcesses by filter
*infoplus.ReceivingProcessApi* | [**getReceivingProcessById**](docs/ReceivingProcessApi.md#getReceivingProcessById) | **GET** /beta/receivingProcess/{receivingProcessId} | Get a receivingProcess by id
*infoplus.ReceivingProcessApi* | [**getReceivingProcessFiles**](docs/ReceivingProcessApi.md#getReceivingProcessFiles) | **GET** /beta/receivingProcess/{receivingProcessId}/file | Get the files for a receivingProcess.
*infoplus.ReceivingProcessApi* | [**getReceivingProcessTags**](docs/ReceivingProcessApi.md#getReceivingProcessTags) | **GET** /beta/receivingProcess/{receivingProcessId}/tag | Get the tags for a receivingProcess.
*infoplus.ReceivingProcessApi* | [**updateReceivingProcessCustomFields**](docs/ReceivingProcessApi.md#updateReceivingProcessCustomFields) | **PUT** /beta/receivingProcess/customFields | Update a receivingProcess custom fields
*infoplus.ReceivingWorksheetApi* | [**addReceivingWorksheet**](docs/ReceivingWorksheetApi.md#addReceivingWorksheet) | **POST** /beta/receivingWorksheet | Create a receivingWorksheet
*infoplus.ReceivingWorksheetApi* | [**addReceivingWorksheetAudit**](docs/ReceivingWorksheetApi.md#addReceivingWorksheetAudit) | **PUT** /beta/receivingWorksheet/{receivingWorksheetId}/audit/{receivingWorksheetAudit} | Add new audit for a receivingWorksheet
*infoplus.ReceivingWorksheetApi* | [**addReceivingWorksheetFile**](docs/ReceivingWorksheetApi.md#addReceivingWorksheetFile) | **POST** /beta/receivingWorksheet/{receivingWorksheetId}/file/{fileName} | Attach a file to a receivingWorksheet
*infoplus.ReceivingWorksheetApi* | [**addReceivingWorksheetFileByURL**](docs/ReceivingWorksheetApi.md#addReceivingWorksheetFileByURL) | **POST** /beta/receivingWorksheet/{receivingWorksheetId}/file | Attach a file to a receivingWorksheet by URL.
*infoplus.ReceivingWorksheetApi* | [**addReceivingWorksheetTag**](docs/ReceivingWorksheetApi.md#addReceivingWorksheetTag) | **PUT** /beta/receivingWorksheet/{receivingWorksheetId}/tag/{receivingWorksheetTag} | Add new tags for a receivingWorksheet.
*infoplus.ReceivingWorksheetApi* | [**deleteReceivingWorksheet**](docs/ReceivingWorksheetApi.md#deleteReceivingWorksheet) | **DELETE** /beta/receivingWorksheet/{receivingWorksheetId} | Delete a receivingWorksheet
*infoplus.ReceivingWorksheetApi* | [**deleteReceivingWorksheetFile**](docs/ReceivingWorksheetApi.md#deleteReceivingWorksheetFile) | **DELETE** /beta/receivingWorksheet/{receivingWorksheetId}/file/{fileId} | Delete a file for a receivingWorksheet.
*infoplus.ReceivingWorksheetApi* | [**deleteReceivingWorksheetTag**](docs/ReceivingWorksheetApi.md#deleteReceivingWorksheetTag) | **DELETE** /beta/receivingWorksheet/{receivingWorksheetId}/tag/{receivingWorksheetTag} | Delete a tag for a receivingWorksheet.
*infoplus.ReceivingWorksheetApi* | [**getDuplicateReceivingWorksheetById**](docs/ReceivingWorksheetApi.md#getDuplicateReceivingWorksheetById) | **GET** /beta/receivingWorksheet/duplicate/{receivingWorksheetId} | Get a duplicated a receivingWorksheet by id
*infoplus.ReceivingWorksheetApi* | [**getReceivingWorksheetByFilter**](docs/ReceivingWorksheetApi.md#getReceivingWorksheetByFilter) | **GET** /beta/receivingWorksheet/search | Search receivingWorksheets by filter
*infoplus.ReceivingWorksheetApi* | [**getReceivingWorksheetById**](docs/ReceivingWorksheetApi.md#getReceivingWorksheetById) | **GET** /beta/receivingWorksheet/{receivingWorksheetId} | Get a receivingWorksheet by id
*infoplus.ReceivingWorksheetApi* | [**getReceivingWorksheetFiles**](docs/ReceivingWorksheetApi.md#getReceivingWorksheetFiles) | **GET** /beta/receivingWorksheet/{receivingWorksheetId}/file | Get the files for a receivingWorksheet.
*infoplus.ReceivingWorksheetApi* | [**getReceivingWorksheetTags**](docs/ReceivingWorksheetApi.md#getReceivingWorksheetTags) | **GET** /beta/receivingWorksheet/{receivingWorksheetId}/tag | Get the tags for a receivingWorksheet.
*infoplus.ReceivingWorksheetApi* | [**updateReceivingWorksheet**](docs/ReceivingWorksheetApi.md#updateReceivingWorksheet) | **PUT** /beta/receivingWorksheet | Update a receivingWorksheet
*infoplus.ReceivingWorksheetApi* | [**updateReceivingWorksheetCustomFields**](docs/ReceivingWorksheetApi.md#updateReceivingWorksheetCustomFields) | **PUT** /beta/receivingWorksheet/customFields | Update a receivingWorksheet custom fields
*infoplus.ReplenishmentApi* | [**addReplenishmentAudit**](docs/ReplenishmentApi.md#addReplenishmentAudit) | **PUT** /beta/replenishment/{replenishmentId}/audit/{replenishmentAudit} | Add new audit for a replenishment
*infoplus.ReplenishmentApi* | [**addReplenishmentFile**](docs/ReplenishmentApi.md#addReplenishmentFile) | **POST** /beta/replenishment/{replenishmentId}/file/{fileName} | Attach a file to a replenishment
*infoplus.ReplenishmentApi* | [**addReplenishmentFileByURL**](docs/ReplenishmentApi.md#addReplenishmentFileByURL) | **POST** /beta/replenishment/{replenishmentId}/file | Attach a file to a replenishment by URL.
*infoplus.ReplenishmentApi* | [**addReplenishmentTag**](docs/ReplenishmentApi.md#addReplenishmentTag) | **PUT** /beta/replenishment/{replenishmentId}/tag/{replenishmentTag} | Add new tags for a replenishment.
*infoplus.ReplenishmentApi* | [**deleteReplenishmentFile**](docs/ReplenishmentApi.md#deleteReplenishmentFile) | **DELETE** /beta/replenishment/{replenishmentId}/file/{fileId} | Delete a file for a replenishment.
*infoplus.ReplenishmentApi* | [**deleteReplenishmentTag**](docs/ReplenishmentApi.md#deleteReplenishmentTag) | **DELETE** /beta/replenishment/{replenishmentId}/tag/{replenishmentTag} | Delete a tag for a replenishment.
*infoplus.ReplenishmentApi* | [**getDuplicateReplenishmentById**](docs/ReplenishmentApi.md#getDuplicateReplenishmentById) | **GET** /beta/replenishment/duplicate/{replenishmentId} | Get a duplicated a replenishment by id
*infoplus.ReplenishmentApi* | [**getReplenishmentByFilter**](docs/ReplenishmentApi.md#getReplenishmentByFilter) | **GET** /beta/replenishment/search | Search replenishments by filter
*infoplus.ReplenishmentApi* | [**getReplenishmentById**](docs/ReplenishmentApi.md#getReplenishmentById) | **GET** /beta/replenishment/{replenishmentId} | Get a replenishment by id
*infoplus.ReplenishmentApi* | [**getReplenishmentFiles**](docs/ReplenishmentApi.md#getReplenishmentFiles) | **GET** /beta/replenishment/{replenishmentId}/file | Get the files for a replenishment.
*infoplus.ReplenishmentApi* | [**getReplenishmentTags**](docs/ReplenishmentApi.md#getReplenishmentTags) | **GET** /beta/replenishment/{replenishmentId}/tag | Get the tags for a replenishment.
*infoplus.ReplenishmentApi* | [**updateReplenishmentCustomFields**](docs/ReplenishmentApi.md#updateReplenishmentCustomFields) | **PUT** /beta/replenishment/customFields | Update a replenishment custom fields
*infoplus.ReplenishmentPlanApi* | [**addReplenishmentPlan**](docs/ReplenishmentPlanApi.md#addReplenishmentPlan) | **POST** /beta/replenishmentPlan | Create a replenishmentPlan
*infoplus.ReplenishmentPlanApi* | [**addReplenishmentPlanAudit**](docs/ReplenishmentPlanApi.md#addReplenishmentPlanAudit) | **PUT** /beta/replenishmentPlan/{replenishmentPlanId}/audit/{replenishmentPlanAudit} | Add new audit for a replenishmentPlan
*infoplus.ReplenishmentPlanApi* | [**addReplenishmentPlanFile**](docs/ReplenishmentPlanApi.md#addReplenishmentPlanFile) | **POST** /beta/replenishmentPlan/{replenishmentPlanId}/file/{fileName} | Attach a file to a replenishmentPlan
*infoplus.ReplenishmentPlanApi* | [**addReplenishmentPlanFileByURL**](docs/ReplenishmentPlanApi.md#addReplenishmentPlanFileByURL) | **POST** /beta/replenishmentPlan/{replenishmentPlanId}/file | Attach a file to a replenishmentPlan by URL.
*infoplus.ReplenishmentPlanApi* | [**addReplenishmentPlanTag**](docs/ReplenishmentPlanApi.md#addReplenishmentPlanTag) | **PUT** /beta/replenishmentPlan/{replenishmentPlanId}/tag/{replenishmentPlanTag} | Add new tags for a replenishmentPlan.
*infoplus.ReplenishmentPlanApi* | [**deleteReplenishmentPlan**](docs/ReplenishmentPlanApi.md#deleteReplenishmentPlan) | **DELETE** /beta/replenishmentPlan/{replenishmentPlanId} | Delete a replenishmentPlan
*infoplus.ReplenishmentPlanApi* | [**deleteReplenishmentPlanFile**](docs/ReplenishmentPlanApi.md#deleteReplenishmentPlanFile) | **DELETE** /beta/replenishmentPlan/{replenishmentPlanId}/file/{fileId} | Delete a file for a replenishmentPlan.
*infoplus.ReplenishmentPlanApi* | [**deleteReplenishmentPlanTag**](docs/ReplenishmentPlanApi.md#deleteReplenishmentPlanTag) | **DELETE** /beta/replenishmentPlan/{replenishmentPlanId}/tag/{replenishmentPlanTag} | Delete a tag for a replenishmentPlan.
*infoplus.ReplenishmentPlanApi* | [**getDuplicateReplenishmentPlanById**](docs/ReplenishmentPlanApi.md#getDuplicateReplenishmentPlanById) | **GET** /beta/replenishmentPlan/duplicate/{replenishmentPlanId} | Get a duplicated a replenishmentPlan by id
*infoplus.ReplenishmentPlanApi* | [**getReplenishmentPlanByFilter**](docs/ReplenishmentPlanApi.md#getReplenishmentPlanByFilter) | **GET** /beta/replenishmentPlan/search | Search replenishmentPlans by filter
*infoplus.ReplenishmentPlanApi* | [**getReplenishmentPlanById**](docs/ReplenishmentPlanApi.md#getReplenishmentPlanById) | **GET** /beta/replenishmentPlan/{replenishmentPlanId} | Get a replenishmentPlan by id
*infoplus.ReplenishmentPlanApi* | [**getReplenishmentPlanFiles**](docs/ReplenishmentPlanApi.md#getReplenishmentPlanFiles) | **GET** /beta/replenishmentPlan/{replenishmentPlanId}/file | Get the files for a replenishmentPlan.
*infoplus.ReplenishmentPlanApi* | [**getReplenishmentPlanTags**](docs/ReplenishmentPlanApi.md#getReplenishmentPlanTags) | **GET** /beta/replenishmentPlan/{replenishmentPlanId}/tag | Get the tags for a replenishmentPlan.
*infoplus.ReplenishmentPlanApi* | [**updateReplenishmentPlan**](docs/ReplenishmentPlanApi.md#updateReplenishmentPlan) | **PUT** /beta/replenishmentPlan | Update a replenishmentPlan
*infoplus.ReplenishmentPlanApi* | [**updateReplenishmentPlanCustomFields**](docs/ReplenishmentPlanApi.md#updateReplenishmentPlanCustomFields) | **PUT** /beta/replenishmentPlan/customFields | Update a replenishmentPlan custom fields
*infoplus.ReplenishmentProcessApi* | [**addReplenishmentProcessAudit**](docs/ReplenishmentProcessApi.md#addReplenishmentProcessAudit) | **PUT** /beta/replenishmentProcess/{replenishmentProcessId}/audit/{replenishmentProcessAudit} | Add new audit for a replenishmentProcess
*infoplus.ReplenishmentProcessApi* | [**addReplenishmentProcessFile**](docs/ReplenishmentProcessApi.md#addReplenishmentProcessFile) | **POST** /beta/replenishmentProcess/{replenishmentProcessId}/file/{fileName} | Attach a file to a replenishmentProcess
*infoplus.ReplenishmentProcessApi* | [**addReplenishmentProcessFileByURL**](docs/ReplenishmentProcessApi.md#addReplenishmentProcessFileByURL) | **POST** /beta/replenishmentProcess/{replenishmentProcessId}/file | Attach a file to a replenishmentProcess by URL.
*infoplus.ReplenishmentProcessApi* | [**addReplenishmentProcessTag**](docs/ReplenishmentProcessApi.md#addReplenishmentProcessTag) | **PUT** /beta/replenishmentProcess/{replenishmentProcessId}/tag/{replenishmentProcessTag} | Add new tags for a replenishmentProcess.
*infoplus.ReplenishmentProcessApi* | [**deleteReplenishmentProcessFile**](docs/ReplenishmentProcessApi.md#deleteReplenishmentProcessFile) | **DELETE** /beta/replenishmentProcess/{replenishmentProcessId}/file/{fileId} | Delete a file for a replenishmentProcess.
*infoplus.ReplenishmentProcessApi* | [**deleteReplenishmentProcessTag**](docs/ReplenishmentProcessApi.md#deleteReplenishmentProcessTag) | **DELETE** /beta/replenishmentProcess/{replenishmentProcessId}/tag/{replenishmentProcessTag} | Delete a tag for a replenishmentProcess.
*infoplus.ReplenishmentProcessApi* | [**getDuplicateReplenishmentProcessById**](docs/ReplenishmentProcessApi.md#getDuplicateReplenishmentProcessById) | **GET** /beta/replenishmentProcess/duplicate/{replenishmentProcessId} | Get a duplicated a replenishmentProcess by id
*infoplus.ReplenishmentProcessApi* | [**getReplenishmentProcessByFilter**](docs/ReplenishmentProcessApi.md#getReplenishmentProcessByFilter) | **GET** /beta/replenishmentProcess/search | Search replenishmentProcesses by filter
*infoplus.ReplenishmentProcessApi* | [**getReplenishmentProcessById**](docs/ReplenishmentProcessApi.md#getReplenishmentProcessById) | **GET** /beta/replenishmentProcess/{replenishmentProcessId} | Get a replenishmentProcess by id
*infoplus.ReplenishmentProcessApi* | [**getReplenishmentProcessFiles**](docs/ReplenishmentProcessApi.md#getReplenishmentProcessFiles) | **GET** /beta/replenishmentProcess/{replenishmentProcessId}/file | Get the files for a replenishmentProcess.
*infoplus.ReplenishmentProcessApi* | [**getReplenishmentProcessTags**](docs/ReplenishmentProcessApi.md#getReplenishmentProcessTags) | **GET** /beta/replenishmentProcess/{replenishmentProcessId}/tag | Get the tags for a replenishmentProcess.
*infoplus.ReplenishmentProcessApi* | [**updateReplenishmentProcessCustomFields**](docs/ReplenishmentProcessApi.md#updateReplenishmentProcessCustomFields) | **PUT** /beta/replenishmentProcess/customFields | Update a replenishmentProcess custom fields
*infoplus.ReportApi* | [**runReport**](docs/ReportApi.md#runReport) | **GET** /beta/report/{reportId}/runReport | Run a specified report
*infoplus.ScheduledPlanLogApi* | [**addScheduledPlanLogAudit**](docs/ScheduledPlanLogApi.md#addScheduledPlanLogAudit) | **PUT** /beta/scheduledPlanLog/{scheduledPlanLogId}/audit/{scheduledPlanLogAudit} | Add new audit for a scheduledPlanLog
*infoplus.ScheduledPlanLogApi* | [**addScheduledPlanLogFile**](docs/ScheduledPlanLogApi.md#addScheduledPlanLogFile) | **POST** /beta/scheduledPlanLog/{scheduledPlanLogId}/file/{fileName} | Attach a file to a scheduledPlanLog
*infoplus.ScheduledPlanLogApi* | [**addScheduledPlanLogFileByURL**](docs/ScheduledPlanLogApi.md#addScheduledPlanLogFileByURL) | **POST** /beta/scheduledPlanLog/{scheduledPlanLogId}/file | Attach a file to a scheduledPlanLog by URL.
*infoplus.ScheduledPlanLogApi* | [**addScheduledPlanLogTag**](docs/ScheduledPlanLogApi.md#addScheduledPlanLogTag) | **PUT** /beta/scheduledPlanLog/{scheduledPlanLogId}/tag/{scheduledPlanLogTag} | Add new tags for a scheduledPlanLog.
*infoplus.ScheduledPlanLogApi* | [**deleteScheduledPlanLogFile**](docs/ScheduledPlanLogApi.md#deleteScheduledPlanLogFile) | **DELETE** /beta/scheduledPlanLog/{scheduledPlanLogId}/file/{fileId} | Delete a file for a scheduledPlanLog.
*infoplus.ScheduledPlanLogApi* | [**deleteScheduledPlanLogTag**](docs/ScheduledPlanLogApi.md#deleteScheduledPlanLogTag) | **DELETE** /beta/scheduledPlanLog/{scheduledPlanLogId}/tag/{scheduledPlanLogTag} | Delete a tag for a scheduledPlanLog.
*infoplus.ScheduledPlanLogApi* | [**getDuplicateScheduledPlanLogById**](docs/ScheduledPlanLogApi.md#getDuplicateScheduledPlanLogById) | **GET** /beta/scheduledPlanLog/duplicate/{scheduledPlanLogId} | Get a duplicated a scheduledPlanLog by id
*infoplus.ScheduledPlanLogApi* | [**getScheduledPlanLogByFilter**](docs/ScheduledPlanLogApi.md#getScheduledPlanLogByFilter) | **GET** /beta/scheduledPlanLog/search | Search scheduledPlanLogs by filter
*infoplus.ScheduledPlanLogApi* | [**getScheduledPlanLogById**](docs/ScheduledPlanLogApi.md#getScheduledPlanLogById) | **GET** /beta/scheduledPlanLog/{scheduledPlanLogId} | Get a scheduledPlanLog by id
*infoplus.ScheduledPlanLogApi* | [**getScheduledPlanLogFiles**](docs/ScheduledPlanLogApi.md#getScheduledPlanLogFiles) | **GET** /beta/scheduledPlanLog/{scheduledPlanLogId}/file | Get the files for a scheduledPlanLog.
*infoplus.ScheduledPlanLogApi* | [**getScheduledPlanLogTags**](docs/ScheduledPlanLogApi.md#getScheduledPlanLogTags) | **GET** /beta/scheduledPlanLog/{scheduledPlanLogId}/tag | Get the tags for a scheduledPlanLog.
*infoplus.ServiceTypeApi* | [**getServiceTypeById**](docs/ServiceTypeApi.md#getServiceTypeById) | **GET** /beta/serviceType/{serviceTypeId} | Get a serviceType by id
*infoplus.ServiceTypeApi* | [**getServiceTypeBySearchText**](docs/ServiceTypeApi.md#getServiceTypeBySearchText) | **GET** /beta/serviceType/search | Search serviceTypes
*infoplus.ShipmentApi* | [**addShipmentAudit**](docs/ShipmentApi.md#addShipmentAudit) | **PUT** /beta/shipment/{shipmentId}/audit/{shipmentAudit} | Add new audit for a shipment
*infoplus.ShipmentApi* | [**addShipmentFile**](docs/ShipmentApi.md#addShipmentFile) | **POST** /beta/shipment/{shipmentId}/file/{fileName} | Attach a file to a shipment
*infoplus.ShipmentApi* | [**addShipmentFileByURL**](docs/ShipmentApi.md#addShipmentFileByURL) | **POST** /beta/shipment/{shipmentId}/file | Attach a file to a shipment by URL.
*infoplus.ShipmentApi* | [**addShipmentTag**](docs/ShipmentApi.md#addShipmentTag) | **PUT** /beta/shipment/{shipmentId}/tag/{shipmentTag} | Add new tags for a shipment.
*infoplus.ShipmentApi* | [**deleteShipmentFile**](docs/ShipmentApi.md#deleteShipmentFile) | **DELETE** /beta/shipment/{shipmentId}/file/{fileId} | Delete a file for a shipment.
*infoplus.ShipmentApi* | [**deleteShipmentTag**](docs/ShipmentApi.md#deleteShipmentTag) | **DELETE** /beta/shipment/{shipmentId}/tag/{shipmentTag} | Delete a tag for a shipment.
*infoplus.ShipmentApi* | [**getDuplicateShipmentById**](docs/ShipmentApi.md#getDuplicateShipmentById) | **GET** /beta/shipment/duplicate/{shipmentId} | Get a duplicated a shipment by id
*infoplus.ShipmentApi* | [**getShipmentByFilter**](docs/ShipmentApi.md#getShipmentByFilter) | **GET** /beta/shipment/search | Search shipments by filter
*infoplus.ShipmentApi* | [**getShipmentById**](docs/ShipmentApi.md#getShipmentById) | **GET** /beta/shipment/{shipmentId} | Get a shipment by id
*infoplus.ShipmentApi* | [**getShipmentFiles**](docs/ShipmentApi.md#getShipmentFiles) | **GET** /beta/shipment/{shipmentId}/file | Get the files for a shipment.
*infoplus.ShipmentApi* | [**getShipmentTags**](docs/ShipmentApi.md#getShipmentTags) | **GET** /beta/shipment/{shipmentId}/tag | Get the tags for a shipment.
*infoplus.ShipmentApi* | [**updateShipmentCustomFields**](docs/ShipmentApi.md#updateShipmentCustomFields) | **PUT** /beta/shipment/customFields | Update a shipment custom fields
*infoplus.ShoppingCartConnectionApi* | [**addShoppingCartConnection**](docs/ShoppingCartConnectionApi.md#addShoppingCartConnection) | **POST** /beta/shoppingCartConnection | Create a shoppingCartConnection
*infoplus.ShoppingCartConnectionApi* | [**addShoppingCartConnectionAudit**](docs/ShoppingCartConnectionApi.md#addShoppingCartConnectionAudit) | **PUT** /beta/shoppingCartConnection/{shoppingCartConnectionId}/audit/{shoppingCartConnectionAudit} | Add new audit for a shoppingCartConnection
*infoplus.ShoppingCartConnectionApi* | [**addShoppingCartConnectionFile**](docs/ShoppingCartConnectionApi.md#addShoppingCartConnectionFile) | **POST** /beta/shoppingCartConnection/{shoppingCartConnectionId}/file/{fileName} | Attach a file to a shoppingCartConnection
*infoplus.ShoppingCartConnectionApi* | [**addShoppingCartConnectionFileByURL**](docs/ShoppingCartConnectionApi.md#addShoppingCartConnectionFileByURL) | **POST** /beta/shoppingCartConnection/{shoppingCartConnectionId}/file | Attach a file to a shoppingCartConnection by URL.
*infoplus.ShoppingCartConnectionApi* | [**addShoppingCartConnectionTag**](docs/ShoppingCartConnectionApi.md#addShoppingCartConnectionTag) | **PUT** /beta/shoppingCartConnection/{shoppingCartConnectionId}/tag/{shoppingCartConnectionTag} | Add new tags for a shoppingCartConnection.
*infoplus.ShoppingCartConnectionApi* | [**deleteShoppingCartConnection**](docs/ShoppingCartConnectionApi.md#deleteShoppingCartConnection) | **DELETE** /beta/shoppingCartConnection/{shoppingCartConnectionId} | Delete a shoppingCartConnection
*infoplus.ShoppingCartConnectionApi* | [**deleteShoppingCartConnectionFile**](docs/ShoppingCartConnectionApi.md#deleteShoppingCartConnectionFile) | **DELETE** /beta/shoppingCartConnection/{shoppingCartConnectionId}/file/{fileId} | Delete a file for a shoppingCartConnection.
*infoplus.ShoppingCartConnectionApi* | [**deleteShoppingCartConnectionTag**](docs/ShoppingCartConnectionApi.md#deleteShoppingCartConnectionTag) | **DELETE** /beta/shoppingCartConnection/{shoppingCartConnectionId}/tag/{shoppingCartConnectionTag} | Delete a tag for a shoppingCartConnection.
*infoplus.ShoppingCartConnectionApi* | [**getDuplicateShoppingCartConnectionById**](docs/ShoppingCartConnectionApi.md#getDuplicateShoppingCartConnectionById) | **GET** /beta/shoppingCartConnection/duplicate/{shoppingCartConnectionId} | Get a duplicated a shoppingCartConnection by id
*infoplus.ShoppingCartConnectionApi* | [**getShoppingCartConnectionByFilter**](docs/ShoppingCartConnectionApi.md#getShoppingCartConnectionByFilter) | **GET** /beta/shoppingCartConnection/search | Search shoppingCartConnections by filter
*infoplus.ShoppingCartConnectionApi* | [**getShoppingCartConnectionById**](docs/ShoppingCartConnectionApi.md#getShoppingCartConnectionById) | **GET** /beta/shoppingCartConnection/{shoppingCartConnectionId} | Get a shoppingCartConnection by id
*infoplus.ShoppingCartConnectionApi* | [**getShoppingCartConnectionFiles**](docs/ShoppingCartConnectionApi.md#getShoppingCartConnectionFiles) | **GET** /beta/shoppingCartConnection/{shoppingCartConnectionId}/file | Get the files for a shoppingCartConnection.
*infoplus.ShoppingCartConnectionApi* | [**getShoppingCartConnectionTags**](docs/ShoppingCartConnectionApi.md#getShoppingCartConnectionTags) | **GET** /beta/shoppingCartConnection/{shoppingCartConnectionId}/tag | Get the tags for a shoppingCartConnection.
*infoplus.ShoppingCartConnectionApi* | [**updateShoppingCartConnection**](docs/ShoppingCartConnectionApi.md#updateShoppingCartConnection) | **PUT** /beta/shoppingCartConnection | Update a shoppingCartConnection
*infoplus.ShoppingCartConnectionApi* | [**updateShoppingCartConnectionCustomFields**](docs/ShoppingCartConnectionApi.md#updateShoppingCartConnectionCustomFields) | **PUT** /beta/shoppingCartConnection/customFields | Update a shoppingCartConnection custom fields
*infoplus.StandardBusinessDaysApi* | [**addStandardBusinessDays**](docs/StandardBusinessDaysApi.md#addStandardBusinessDays) | **POST** /beta/standardBusinessDays | Create a standardBusinessDays
*infoplus.StandardBusinessDaysApi* | [**addStandardBusinessDaysAudit**](docs/StandardBusinessDaysApi.md#addStandardBusinessDaysAudit) | **PUT** /beta/standardBusinessDays/{standardBusinessDaysId}/audit/{standardBusinessDaysAudit} | Add new audit for a standardBusinessDays
*infoplus.StandardBusinessDaysApi* | [**addStandardBusinessDaysFile**](docs/StandardBusinessDaysApi.md#addStandardBusinessDaysFile) | **POST** /beta/standardBusinessDays/{standardBusinessDaysId}/file/{fileName} | Attach a file to a standardBusinessDays
*infoplus.StandardBusinessDaysApi* | [**addStandardBusinessDaysFileByURL**](docs/StandardBusinessDaysApi.md#addStandardBusinessDaysFileByURL) | **POST** /beta/standardBusinessDays/{standardBusinessDaysId}/file | Attach a file to a standardBusinessDays by URL.
*infoplus.StandardBusinessDaysApi* | [**addStandardBusinessDaysTag**](docs/StandardBusinessDaysApi.md#addStandardBusinessDaysTag) | **PUT** /beta/standardBusinessDays/{standardBusinessDaysId}/tag/{standardBusinessDaysTag} | Add new tags for a standardBusinessDays.
*infoplus.StandardBusinessDaysApi* | [**deleteStandardBusinessDays**](docs/StandardBusinessDaysApi.md#deleteStandardBusinessDays) | **DELETE** /beta/standardBusinessDays/{standardBusinessDaysId} | Delete a standardBusinessDays
*infoplus.StandardBusinessDaysApi* | [**deleteStandardBusinessDaysFile**](docs/StandardBusinessDaysApi.md#deleteStandardBusinessDaysFile) | **DELETE** /beta/standardBusinessDays/{standardBusinessDaysId}/file/{fileId} | Delete a file for a standardBusinessDays.
*infoplus.StandardBusinessDaysApi* | [**deleteStandardBusinessDaysTag**](docs/StandardBusinessDaysApi.md#deleteStandardBusinessDaysTag) | **DELETE** /beta/standardBusinessDays/{standardBusinessDaysId}/tag/{standardBusinessDaysTag} | Delete a tag for a standardBusinessDays.
*infoplus.StandardBusinessDaysApi* | [**getDuplicateStandardBusinessDaysById**](docs/StandardBusinessDaysApi.md#getDuplicateStandardBusinessDaysById) | **GET** /beta/standardBusinessDays/duplicate/{standardBusinessDaysId} | Get a duplicated a standardBusinessDays by id
*infoplus.StandardBusinessDaysApi* | [**getStandardBusinessDaysByFilter**](docs/StandardBusinessDaysApi.md#getStandardBusinessDaysByFilter) | **GET** /beta/standardBusinessDays/search | Search standardBusinessDayses by filter
*infoplus.StandardBusinessDaysApi* | [**getStandardBusinessDaysById**](docs/StandardBusinessDaysApi.md#getStandardBusinessDaysById) | **GET** /beta/standardBusinessDays/{standardBusinessDaysId} | Get a standardBusinessDays by id
*infoplus.StandardBusinessDaysApi* | [**getStandardBusinessDaysFiles**](docs/StandardBusinessDaysApi.md#getStandardBusinessDaysFiles) | **GET** /beta/standardBusinessDays/{standardBusinessDaysId}/file | Get the files for a standardBusinessDays.
*infoplus.StandardBusinessDaysApi* | [**getStandardBusinessDaysTags**](docs/StandardBusinessDaysApi.md#getStandardBusinessDaysTags) | **GET** /beta/standardBusinessDays/{standardBusinessDaysId}/tag | Get the tags for a standardBusinessDays.
*infoplus.StandardBusinessDaysApi* | [**updateStandardBusinessDays**](docs/StandardBusinessDaysApi.md#updateStandardBusinessDays) | **PUT** /beta/standardBusinessDays | Update a standardBusinessDays
*infoplus.SubstitutionApi* | [**addSubstitution**](docs/SubstitutionApi.md#addSubstitution) | **POST** /beta/substitution | Create a substitution
*infoplus.SubstitutionApi* | [**addSubstitutionAudit**](docs/SubstitutionApi.md#addSubstitutionAudit) | **PUT** /beta/substitution/{substitutionId}/audit/{substitutionAudit} | Add new audit for a substitution
*infoplus.SubstitutionApi* | [**addSubstitutionFile**](docs/SubstitutionApi.md#addSubstitutionFile) | **POST** /beta/substitution/{substitutionId}/file/{fileName} | Attach a file to a substitution
*infoplus.SubstitutionApi* | [**addSubstitutionFileByURL**](docs/SubstitutionApi.md#addSubstitutionFileByURL) | **POST** /beta/substitution/{substitutionId}/file | Attach a file to a substitution by URL.
*infoplus.SubstitutionApi* | [**addSubstitutionTag**](docs/SubstitutionApi.md#addSubstitutionTag) | **PUT** /beta/substitution/{substitutionId}/tag/{substitutionTag} | Add new tags for a substitution.
*infoplus.SubstitutionApi* | [**deleteSubstitution**](docs/SubstitutionApi.md#deleteSubstitution) | **DELETE** /beta/substitution/{substitutionId} | Delete a substitution
*infoplus.SubstitutionApi* | [**deleteSubstitutionFile**](docs/SubstitutionApi.md#deleteSubstitutionFile) | **DELETE** /beta/substitution/{substitutionId}/file/{fileId} | Delete a file for a substitution.
*infoplus.SubstitutionApi* | [**deleteSubstitutionTag**](docs/SubstitutionApi.md#deleteSubstitutionTag) | **DELETE** /beta/substitution/{substitutionId}/tag/{substitutionTag} | Delete a tag for a substitution.
*infoplus.SubstitutionApi* | [**getDuplicateSubstitutionById**](docs/SubstitutionApi.md#getDuplicateSubstitutionById) | **GET** /beta/substitution/duplicate/{substitutionId} | Get a duplicated a substitution by id
*infoplus.SubstitutionApi* | [**getSubstitutionByFilter**](docs/SubstitutionApi.md#getSubstitutionByFilter) | **GET** /beta/substitution/search | Search substitutions by filter
*infoplus.SubstitutionApi* | [**getSubstitutionById**](docs/SubstitutionApi.md#getSubstitutionById) | **GET** /beta/substitution/{substitutionId} | Get a substitution by id
*infoplus.SubstitutionApi* | [**getSubstitutionFiles**](docs/SubstitutionApi.md#getSubstitutionFiles) | **GET** /beta/substitution/{substitutionId}/file | Get the files for a substitution.
*infoplus.SubstitutionApi* | [**getSubstitutionTags**](docs/SubstitutionApi.md#getSubstitutionTags) | **GET** /beta/substitution/{substitutionId}/tag | Get the tags for a substitution.
*infoplus.SubstitutionApi* | [**updateSubstitution**](docs/SubstitutionApi.md#updateSubstitution) | **PUT** /beta/substitution | Update a substitution
*infoplus.SubstitutionApi* | [**updateSubstitutionCustomFields**](docs/SubstitutionApi.md#updateSubstitutionCustomFields) | **PUT** /beta/substitution/customFields | Update a substitution custom fields
*infoplus.SupplementApi* | [**addSupplement**](docs/SupplementApi.md#addSupplement) | **POST** /beta/supplement | Create a supplement
*infoplus.SupplementApi* | [**addSupplementAudit**](docs/SupplementApi.md#addSupplementAudit) | **PUT** /beta/supplement/{supplementId}/audit/{supplementAudit} | Add new audit for a supplement
*infoplus.SupplementApi* | [**addSupplementFile**](docs/SupplementApi.md#addSupplementFile) | **POST** /beta/supplement/{supplementId}/file/{fileName} | Attach a file to a supplement
*infoplus.SupplementApi* | [**addSupplementFileByURL**](docs/SupplementApi.md#addSupplementFileByURL) | **POST** /beta/supplement/{supplementId}/file | Attach a file to a supplement by URL.
*infoplus.SupplementApi* | [**addSupplementTag**](docs/SupplementApi.md#addSupplementTag) | **PUT** /beta/supplement/{supplementId}/tag/{supplementTag} | Add new tags for a supplement.
*infoplus.SupplementApi* | [**deleteSupplement**](docs/SupplementApi.md#deleteSupplement) | **DELETE** /beta/supplement/{supplementId} | Delete a supplement
*infoplus.SupplementApi* | [**deleteSupplementFile**](docs/SupplementApi.md#deleteSupplementFile) | **DELETE** /beta/supplement/{supplementId}/file/{fileId} | Delete a file for a supplement.
*infoplus.SupplementApi* | [**deleteSupplementTag**](docs/SupplementApi.md#deleteSupplementTag) | **DELETE** /beta/supplement/{supplementId}/tag/{supplementTag} | Delete a tag for a supplement.
*infoplus.SupplementApi* | [**getDuplicateSupplementById**](docs/SupplementApi.md#getDuplicateSupplementById) | **GET** /beta/supplement/duplicate/{supplementId} | Get a duplicated a supplement by id
*infoplus.SupplementApi* | [**getSupplementByFilter**](docs/SupplementApi.md#getSupplementByFilter) | **GET** /beta/supplement/search | Search supplements by filter
*infoplus.SupplementApi* | [**getSupplementById**](docs/SupplementApi.md#getSupplementById) | **GET** /beta/supplement/{supplementId} | Get a supplement by id
*infoplus.SupplementApi* | [**getSupplementFiles**](docs/SupplementApi.md#getSupplementFiles) | **GET** /beta/supplement/{supplementId}/file | Get the files for a supplement.
*infoplus.SupplementApi* | [**getSupplementTags**](docs/SupplementApi.md#getSupplementTags) | **GET** /beta/supplement/{supplementId}/tag | Get the tags for a supplement.
*infoplus.SupplementApi* | [**updateSupplement**](docs/SupplementApi.md#updateSupplement) | **PUT** /beta/supplement | Update a supplement
*infoplus.SupplementApi* | [**updateSupplementCustomFields**](docs/SupplementApi.md#updateSupplementCustomFields) | **PUT** /beta/supplement/customFields | Update a supplement custom fields
*infoplus.ThirdPartyParcelAccountApi* | [**addThirdPartyParcelAccount**](docs/ThirdPartyParcelAccountApi.md#addThirdPartyParcelAccount) | **POST** /beta/thirdPartyParcelAccount | Create a thirdPartyParcelAccount
*infoplus.ThirdPartyParcelAccountApi* | [**addThirdPartyParcelAccountAudit**](docs/ThirdPartyParcelAccountApi.md#addThirdPartyParcelAccountAudit) | **PUT** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/audit/{thirdPartyParcelAccountAudit} | Add new audit for a thirdPartyParcelAccount
*infoplus.ThirdPartyParcelAccountApi* | [**addThirdPartyParcelAccountFile**](docs/ThirdPartyParcelAccountApi.md#addThirdPartyParcelAccountFile) | **POST** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/file/{fileName} | Attach a file to a thirdPartyParcelAccount
*infoplus.ThirdPartyParcelAccountApi* | [**addThirdPartyParcelAccountFileByURL**](docs/ThirdPartyParcelAccountApi.md#addThirdPartyParcelAccountFileByURL) | **POST** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/file | Attach a file to a thirdPartyParcelAccount by URL.
*infoplus.ThirdPartyParcelAccountApi* | [**addThirdPartyParcelAccountTag**](docs/ThirdPartyParcelAccountApi.md#addThirdPartyParcelAccountTag) | **PUT** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/tag/{thirdPartyParcelAccountTag} | Add new tags for a thirdPartyParcelAccount.
*infoplus.ThirdPartyParcelAccountApi* | [**deleteThirdPartyParcelAccount**](docs/ThirdPartyParcelAccountApi.md#deleteThirdPartyParcelAccount) | **DELETE** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId} | Delete a thirdPartyParcelAccount
*infoplus.ThirdPartyParcelAccountApi* | [**deleteThirdPartyParcelAccountFile**](docs/ThirdPartyParcelAccountApi.md#deleteThirdPartyParcelAccountFile) | **DELETE** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/file/{fileId} | Delete a file for a thirdPartyParcelAccount.
*infoplus.ThirdPartyParcelAccountApi* | [**deleteThirdPartyParcelAccountTag**](docs/ThirdPartyParcelAccountApi.md#deleteThirdPartyParcelAccountTag) | **DELETE** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/tag/{thirdPartyParcelAccountTag} | Delete a tag for a thirdPartyParcelAccount.
*infoplus.ThirdPartyParcelAccountApi* | [**getDuplicateThirdPartyParcelAccountById**](docs/ThirdPartyParcelAccountApi.md#getDuplicateThirdPartyParcelAccountById) | **GET** /beta/thirdPartyParcelAccount/duplicate/{thirdPartyParcelAccountId} | Get a duplicated a thirdPartyParcelAccount by id
*infoplus.ThirdPartyParcelAccountApi* | [**getThirdPartyParcelAccountByFilter**](docs/ThirdPartyParcelAccountApi.md#getThirdPartyParcelAccountByFilter) | **GET** /beta/thirdPartyParcelAccount/search | Search thirdPartyParcelAccounts by filter
*infoplus.ThirdPartyParcelAccountApi* | [**getThirdPartyParcelAccountById**](docs/ThirdPartyParcelAccountApi.md#getThirdPartyParcelAccountById) | **GET** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId} | Get a thirdPartyParcelAccount by id
*infoplus.ThirdPartyParcelAccountApi* | [**getThirdPartyParcelAccountFiles**](docs/ThirdPartyParcelAccountApi.md#getThirdPartyParcelAccountFiles) | **GET** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/file | Get the files for a thirdPartyParcelAccount.
*infoplus.ThirdPartyParcelAccountApi* | [**getThirdPartyParcelAccountTags**](docs/ThirdPartyParcelAccountApi.md#getThirdPartyParcelAccountTags) | **GET** /beta/thirdPartyParcelAccount/{thirdPartyParcelAccountId}/tag | Get the tags for a thirdPartyParcelAccount.
*infoplus.ThirdPartyParcelAccountApi* | [**updateThirdPartyParcelAccount**](docs/ThirdPartyParcelAccountApi.md#updateThirdPartyParcelAccount) | **PUT** /beta/thirdPartyParcelAccount | Update a thirdPartyParcelAccount
*infoplus.ThirdPartyParcelAccountApi* | [**updateThirdPartyParcelAccountCustomFields**](docs/ThirdPartyParcelAccountApi.md#updateThirdPartyParcelAccountCustomFields) | **PUT** /beta/thirdPartyParcelAccount/customFields | Update a thirdPartyParcelAccount custom fields
*infoplus.UserApi* | [**getUserById**](docs/UserApi.md#getUserById) | **GET** /beta/user/{userId} | Get an user by id
*infoplus.UserApi* | [**getUserBySearchText**](docs/UserApi.md#getUserBySearchText) | **GET** /beta/user/search | Search users
*infoplus.VendorApi* | [**addVendor**](docs/VendorApi.md#addVendor) | **POST** /beta/vendor | Create a vendor
*infoplus.VendorApi* | [**addVendorAudit**](docs/VendorApi.md#addVendorAudit) | **PUT** /beta/vendor/{vendorId}/audit/{vendorAudit} | Add new audit for a vendor
*infoplus.VendorApi* | [**addVendorFile**](docs/VendorApi.md#addVendorFile) | **POST** /beta/vendor/{vendorId}/file/{fileName} | Attach a file to a vendor
*infoplus.VendorApi* | [**addVendorFileByURL**](docs/VendorApi.md#addVendorFileByURL) | **POST** /beta/vendor/{vendorId}/file | Attach a file to a vendor by URL.
*infoplus.VendorApi* | [**addVendorTag**](docs/VendorApi.md#addVendorTag) | **PUT** /beta/vendor/{vendorId}/tag/{vendorTag} | Add new tags for a vendor.
*infoplus.VendorApi* | [**deleteVendor**](docs/VendorApi.md#deleteVendor) | **DELETE** /beta/vendor/{vendorId} | Delete a vendor
*infoplus.VendorApi* | [**deleteVendorFile**](docs/VendorApi.md#deleteVendorFile) | **DELETE** /beta/vendor/{vendorId}/file/{fileId} | Delete a file for a vendor.
*infoplus.VendorApi* | [**deleteVendorTag**](docs/VendorApi.md#deleteVendorTag) | **DELETE** /beta/vendor/{vendorId}/tag/{vendorTag} | Delete a tag for a vendor.
*infoplus.VendorApi* | [**getDuplicateVendorById**](docs/VendorApi.md#getDuplicateVendorById) | **GET** /beta/vendor/duplicate/{vendorId} | Get a duplicated a vendor by id
*infoplus.VendorApi* | [**getVendorByFilter**](docs/VendorApi.md#getVendorByFilter) | **GET** /beta/vendor/search | Search vendors by filter
*infoplus.VendorApi* | [**getVendorById**](docs/VendorApi.md#getVendorById) | **GET** /beta/vendor/{vendorId} | Get a vendor by id
*infoplus.VendorApi* | [**getVendorFiles**](docs/VendorApi.md#getVendorFiles) | **GET** /beta/vendor/{vendorId}/file | Get the files for a vendor.
*infoplus.VendorApi* | [**getVendorTags**](docs/VendorApi.md#getVendorTags) | **GET** /beta/vendor/{vendorId}/tag | Get the tags for a vendor.
*infoplus.VendorApi* | [**updateVendor**](docs/VendorApi.md#updateVendor) | **PUT** /beta/vendor | Update a vendor
*infoplus.VendorApi* | [**updateVendorCustomFields**](docs/VendorApi.md#updateVendorCustomFields) | **PUT** /beta/vendor/customFields | Update a vendor custom fields
*infoplus.VendorComplianceSurveyApi* | [**addVendorComplianceSurvey**](docs/VendorComplianceSurveyApi.md#addVendorComplianceSurvey) | **POST** /beta/vendorComplianceSurvey | Create a vendorComplianceSurvey
*infoplus.VendorComplianceSurveyApi* | [**addVendorComplianceSurveyAudit**](docs/VendorComplianceSurveyApi.md#addVendorComplianceSurveyAudit) | **PUT** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/audit/{vendorComplianceSurveyAudit} | Add new audit for a vendorComplianceSurvey
*infoplus.VendorComplianceSurveyApi* | [**addVendorComplianceSurveyFile**](docs/VendorComplianceSurveyApi.md#addVendorComplianceSurveyFile) | **POST** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file/{fileName} | Attach a file to a vendorComplianceSurvey
*infoplus.VendorComplianceSurveyApi* | [**addVendorComplianceSurveyFileByURL**](docs/VendorComplianceSurveyApi.md#addVendorComplianceSurveyFileByURL) | **POST** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file | Attach a file to a vendorComplianceSurvey by URL.
*infoplus.VendorComplianceSurveyApi* | [**addVendorComplianceSurveyTag**](docs/VendorComplianceSurveyApi.md#addVendorComplianceSurveyTag) | **PUT** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag} | Add new tags for a vendorComplianceSurvey.
*infoplus.VendorComplianceSurveyApi* | [**deleteVendorComplianceSurvey**](docs/VendorComplianceSurveyApi.md#deleteVendorComplianceSurvey) | **DELETE** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId} | Delete a vendorComplianceSurvey
*infoplus.VendorComplianceSurveyApi* | [**deleteVendorComplianceSurveyFile**](docs/VendorComplianceSurveyApi.md#deleteVendorComplianceSurveyFile) | **DELETE** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file/{fileId} | Delete a file for a vendorComplianceSurvey.
*infoplus.VendorComplianceSurveyApi* | [**deleteVendorComplianceSurveyTag**](docs/VendorComplianceSurveyApi.md#deleteVendorComplianceSurveyTag) | **DELETE** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag/{vendorComplianceSurveyTag} | Delete a tag for a vendorComplianceSurvey.
*infoplus.VendorComplianceSurveyApi* | [**getDuplicateVendorComplianceSurveyById**](docs/VendorComplianceSurveyApi.md#getDuplicateVendorComplianceSurveyById) | **GET** /beta/vendorComplianceSurvey/duplicate/{vendorComplianceSurveyId} | Get a duplicated a vendorComplianceSurvey by id
*infoplus.VendorComplianceSurveyApi* | [**getVendorComplianceSurveyByFilter**](docs/VendorComplianceSurveyApi.md#getVendorComplianceSurveyByFilter) | **GET** /beta/vendorComplianceSurvey/search | Search vendorComplianceSurveys by filter
*infoplus.VendorComplianceSurveyApi* | [**getVendorComplianceSurveyById**](docs/VendorComplianceSurveyApi.md#getVendorComplianceSurveyById) | **GET** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId} | Get a vendorComplianceSurvey by id
*infoplus.VendorComplianceSurveyApi* | [**getVendorComplianceSurveyFiles**](docs/VendorComplianceSurveyApi.md#getVendorComplianceSurveyFiles) | **GET** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/file | Get the files for a vendorComplianceSurvey.
*infoplus.VendorComplianceSurveyApi* | [**getVendorComplianceSurveyTags**](docs/VendorComplianceSurveyApi.md#getVendorComplianceSurveyTags) | **GET** /beta/vendorComplianceSurvey/{vendorComplianceSurveyId}/tag | Get the tags for a vendorComplianceSurvey.
*infoplus.VendorComplianceSurveyApi* | [**updateVendorComplianceSurvey**](docs/VendorComplianceSurveyApi.md#updateVendorComplianceSurvey) | **PUT** /beta/vendorComplianceSurvey | Update a vendorComplianceSurvey
*infoplus.VendorComplianceSurveyApi* | [**updateVendorComplianceSurveyCustomFields**](docs/VendorComplianceSurveyApi.md#updateVendorComplianceSurveyCustomFields) | **PUT** /beta/vendorComplianceSurvey/customFields | Update a vendorComplianceSurvey custom fields
*infoplus.WarehouseApi* | [**addWarehouse**](docs/WarehouseApi.md#addWarehouse) | **POST** /beta/warehouse | Create a warehouse
*infoplus.WarehouseApi* | [**addWarehouseAudit**](docs/WarehouseApi.md#addWarehouseAudit) | **PUT** /beta/warehouse/{warehouseId}/audit/{warehouseAudit} | Add new audit for a warehouse
*infoplus.WarehouseApi* | [**addWarehouseFile**](docs/WarehouseApi.md#addWarehouseFile) | **POST** /beta/warehouse/{warehouseId}/file/{fileName} | Attach a file to a warehouse
*infoplus.WarehouseApi* | [**addWarehouseFileByURL**](docs/WarehouseApi.md#addWarehouseFileByURL) | **POST** /beta/warehouse/{warehouseId}/file | Attach a file to a warehouse by URL.
*infoplus.WarehouseApi* | [**addWarehouseTag**](docs/WarehouseApi.md#addWarehouseTag) | **PUT** /beta/warehouse/{warehouseId}/tag/{warehouseTag} | Add new tags for a warehouse.
*infoplus.WarehouseApi* | [**deleteWarehouseFile**](docs/WarehouseApi.md#deleteWarehouseFile) | **DELETE** /beta/warehouse/{warehouseId}/file/{fileId} | Delete a file for a warehouse.
*infoplus.WarehouseApi* | [**deleteWarehouseTag**](docs/WarehouseApi.md#deleteWarehouseTag) | **DELETE** /beta/warehouse/{warehouseId}/tag/{warehouseTag} | Delete a tag for a warehouse.
*infoplus.WarehouseApi* | [**getDuplicateWarehouseById**](docs/WarehouseApi.md#getDuplicateWarehouseById) | **GET** /beta/warehouse/duplicate/{warehouseId} | Get a duplicated a warehouse by id
*infoplus.WarehouseApi* | [**getWarehouseByFilter**](docs/WarehouseApi.md#getWarehouseByFilter) | **GET** /beta/warehouse/search | Search warehouses by filter
*infoplus.WarehouseApi* | [**getWarehouseById**](docs/WarehouseApi.md#getWarehouseById) | **GET** /beta/warehouse/{warehouseId} | Get a warehouse by id
*infoplus.WarehouseApi* | [**getWarehouseFiles**](docs/WarehouseApi.md#getWarehouseFiles) | **GET** /beta/warehouse/{warehouseId}/file | Get the files for a warehouse.
*infoplus.WarehouseApi* | [**getWarehouseTags**](docs/WarehouseApi.md#getWarehouseTags) | **GET** /beta/warehouse/{warehouseId}/tag | Get the tags for a warehouse.
*infoplus.WarehouseApi* | [**updateWarehouse**](docs/WarehouseApi.md#updateWarehouse) | **PUT** /beta/warehouse | Update a warehouse
*infoplus.WarehouseApi* | [**updateWarehouseCustomFields**](docs/WarehouseApi.md#updateWarehouseCustomFields) | **PUT** /beta/warehouse/customFields | Update a warehouse custom fields
*infoplus.WarehouseDocumentApi* | [**addWarehouseDocumentAudit**](docs/WarehouseDocumentApi.md#addWarehouseDocumentAudit) | **PUT** /beta/warehouseDocument/{warehouseDocumentId}/audit/{warehouseDocumentAudit} | Add new audit for a warehouseDocument
*infoplus.WarehouseDocumentApi* | [**addWarehouseDocumentFile**](docs/WarehouseDocumentApi.md#addWarehouseDocumentFile) | **POST** /beta/warehouseDocument/{warehouseDocumentId}/file/{fileName} | Attach a file to a warehouseDocument
*infoplus.WarehouseDocumentApi* | [**addWarehouseDocumentFileByURL**](docs/WarehouseDocumentApi.md#addWarehouseDocumentFileByURL) | **POST** /beta/warehouseDocument/{warehouseDocumentId}/file | Attach a file to a warehouseDocument by URL.
*infoplus.WarehouseDocumentApi* | [**addWarehouseDocumentTag**](docs/WarehouseDocumentApi.md#addWarehouseDocumentTag) | **PUT** /beta/warehouseDocument/{warehouseDocumentId}/tag/{warehouseDocumentTag} | Add new tags for a warehouseDocument.
*infoplus.WarehouseDocumentApi* | [**deleteWarehouseDocumentFile**](docs/WarehouseDocumentApi.md#deleteWarehouseDocumentFile) | **DELETE** /beta/warehouseDocument/{warehouseDocumentId}/file/{fileId} | Delete a file for a warehouseDocument.
*infoplus.WarehouseDocumentApi* | [**deleteWarehouseDocumentTag**](docs/WarehouseDocumentApi.md#deleteWarehouseDocumentTag) | **DELETE** /beta/warehouseDocument/{warehouseDocumentId}/tag/{warehouseDocumentTag} | Delete a tag for a warehouseDocument.
*infoplus.WarehouseDocumentApi* | [**getDuplicateWarehouseDocumentById**](docs/WarehouseDocumentApi.md#getDuplicateWarehouseDocumentById) | **GET** /beta/warehouseDocument/duplicate/{warehouseDocumentId} | Get a duplicated a warehouseDocument by id
*infoplus.WarehouseDocumentApi* | [**getWarehouseDocumentByFilter**](docs/WarehouseDocumentApi.md#getWarehouseDocumentByFilter) | **GET** /beta/warehouseDocument/search | Search warehouseDocuments by filter
*infoplus.WarehouseDocumentApi* | [**getWarehouseDocumentById**](docs/WarehouseDocumentApi.md#getWarehouseDocumentById) | **GET** /beta/warehouseDocument/{warehouseDocumentId} | Get a warehouseDocument by id
*infoplus.WarehouseDocumentApi* | [**getWarehouseDocumentFiles**](docs/WarehouseDocumentApi.md#getWarehouseDocumentFiles) | **GET** /beta/warehouseDocument/{warehouseDocumentId}/file | Get the files for a warehouseDocument.
*infoplus.WarehouseDocumentApi* | [**getWarehouseDocumentTags**](docs/WarehouseDocumentApi.md#getWarehouseDocumentTags) | **GET** /beta/warehouseDocument/{warehouseDocumentId}/tag | Get the tags for a warehouseDocument.
*infoplus.WarehouseDocumentApi* | [**updateWarehouseDocumentCustomFields**](docs/WarehouseDocumentApi.md#updateWarehouseDocumentCustomFields) | **PUT** /beta/warehouseDocument/customFields | Update a warehouseDocument custom fields
*infoplus.WarehouseDocumentTypeApi* | [**addWarehouseDocumentTypeAudit**](docs/WarehouseDocumentTypeApi.md#addWarehouseDocumentTypeAudit) | **PUT** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/audit/{warehouseDocumentTypeAudit} | Add new audit for a warehouseDocumentType
*infoplus.WarehouseDocumentTypeApi* | [**addWarehouseDocumentTypeFile**](docs/WarehouseDocumentTypeApi.md#addWarehouseDocumentTypeFile) | **POST** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/file/{fileName} | Attach a file to a warehouseDocumentType
*infoplus.WarehouseDocumentTypeApi* | [**addWarehouseDocumentTypeFileByURL**](docs/WarehouseDocumentTypeApi.md#addWarehouseDocumentTypeFileByURL) | **POST** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/file | Attach a file to a warehouseDocumentType by URL.
*infoplus.WarehouseDocumentTypeApi* | [**addWarehouseDocumentTypeTag**](docs/WarehouseDocumentTypeApi.md#addWarehouseDocumentTypeTag) | **PUT** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/tag/{warehouseDocumentTypeTag} | Add new tags for a warehouseDocumentType.
*infoplus.WarehouseDocumentTypeApi* | [**deleteWarehouseDocumentTypeFile**](docs/WarehouseDocumentTypeApi.md#deleteWarehouseDocumentTypeFile) | **DELETE** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/file/{fileId} | Delete a file for a warehouseDocumentType.
*infoplus.WarehouseDocumentTypeApi* | [**deleteWarehouseDocumentTypeTag**](docs/WarehouseDocumentTypeApi.md#deleteWarehouseDocumentTypeTag) | **DELETE** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/tag/{warehouseDocumentTypeTag} | Delete a tag for a warehouseDocumentType.
*infoplus.WarehouseDocumentTypeApi* | [**getDuplicateWarehouseDocumentTypeById**](docs/WarehouseDocumentTypeApi.md#getDuplicateWarehouseDocumentTypeById) | **GET** /beta/warehouseDocumentType/duplicate/{warehouseDocumentTypeId} | Get a duplicated a warehouseDocumentType by id
*infoplus.WarehouseDocumentTypeApi* | [**getWarehouseDocumentTypeByFilter**](docs/WarehouseDocumentTypeApi.md#getWarehouseDocumentTypeByFilter) | **GET** /beta/warehouseDocumentType/search | Search warehouseDocumentTypes by filter
*infoplus.WarehouseDocumentTypeApi* | [**getWarehouseDocumentTypeById**](docs/WarehouseDocumentTypeApi.md#getWarehouseDocumentTypeById) | **GET** /beta/warehouseDocumentType/{warehouseDocumentTypeId} | Get a warehouseDocumentType by id
*infoplus.WarehouseDocumentTypeApi* | [**getWarehouseDocumentTypeFiles**](docs/WarehouseDocumentTypeApi.md#getWarehouseDocumentTypeFiles) | **GET** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/file | Get the files for a warehouseDocumentType.
*infoplus.WarehouseDocumentTypeApi* | [**getWarehouseDocumentTypeTags**](docs/WarehouseDocumentTypeApi.md#getWarehouseDocumentTypeTags) | **GET** /beta/warehouseDocumentType/{warehouseDocumentTypeId}/tag | Get the tags for a warehouseDocumentType.
*infoplus.WarehouseServiceTypeApi* | [**addWarehouseServiceType**](docs/WarehouseServiceTypeApi.md#addWarehouseServiceType) | **POST** /beta/warehouseServiceType | Create a warehouseServiceType
*infoplus.WarehouseServiceTypeApi* | [**addWarehouseServiceTypeAudit**](docs/WarehouseServiceTypeApi.md#addWarehouseServiceTypeAudit) | **PUT** /beta/warehouseServiceType/{warehouseServiceTypeId}/audit/{warehouseServiceTypeAudit} | Add new audit for a warehouseServiceType
*infoplus.WarehouseServiceTypeApi* | [**addWarehouseServiceTypeFile**](docs/WarehouseServiceTypeApi.md#addWarehouseServiceTypeFile) | **POST** /beta/warehouseServiceType/{warehouseServiceTypeId}/file/{fileName} | Attach a file to a warehouseServiceType
*infoplus.WarehouseServiceTypeApi* | [**addWarehouseServiceTypeFileByURL**](docs/WarehouseServiceTypeApi.md#addWarehouseServiceTypeFileByURL) | **POST** /beta/warehouseServiceType/{warehouseServiceTypeId}/file | Attach a file to a warehouseServiceType by URL.
*infoplus.WarehouseServiceTypeApi* | [**addWarehouseServiceTypeTag**](docs/WarehouseServiceTypeApi.md#addWarehouseServiceTypeTag) | **PUT** /beta/warehouseServiceType/{warehouseServiceTypeId}/tag/{warehouseServiceTypeTag} | Add new tags for a warehouseServiceType.
*infoplus.WarehouseServiceTypeApi* | [**deleteWarehouseServiceType**](docs/WarehouseServiceTypeApi.md#deleteWarehouseServiceType) | **DELETE** /beta/warehouseServiceType/{warehouseServiceTypeId} | Delete a warehouseServiceType
*infoplus.WarehouseServiceTypeApi* | [**deleteWarehouseServiceTypeFile**](docs/WarehouseServiceTypeApi.md#deleteWarehouseServiceTypeFile) | **DELETE** /beta/warehouseServiceType/{warehouseServiceTypeId}/file/{fileId} | Delete a file for a warehouseServiceType.
*infoplus.WarehouseServiceTypeApi* | [**deleteWarehouseServiceTypeTag**](docs/WarehouseServiceTypeApi.md#deleteWarehouseServiceTypeTag) | **DELETE** /beta/warehouseServiceType/{warehouseServiceTypeId}/tag/{warehouseServiceTypeTag} | Delete a tag for a warehouseServiceType.
*infoplus.WarehouseServiceTypeApi* | [**getDuplicateWarehouseServiceTypeById**](docs/WarehouseServiceTypeApi.md#getDuplicateWarehouseServiceTypeById) | **GET** /beta/warehouseServiceType/duplicate/{warehouseServiceTypeId} | Get a duplicated a warehouseServiceType by id
*infoplus.WarehouseServiceTypeApi* | [**getWarehouseServiceTypeByFilter**](docs/WarehouseServiceTypeApi.md#getWarehouseServiceTypeByFilter) | **GET** /beta/warehouseServiceType/search | Search warehouseServiceTypes by filter
*infoplus.WarehouseServiceTypeApi* | [**getWarehouseServiceTypeById**](docs/WarehouseServiceTypeApi.md#getWarehouseServiceTypeById) | **GET** /beta/warehouseServiceType/{warehouseServiceTypeId} | Get a warehouseServiceType by id
*infoplus.WarehouseServiceTypeApi* | [**getWarehouseServiceTypeFiles**](docs/WarehouseServiceTypeApi.md#getWarehouseServiceTypeFiles) | **GET** /beta/warehouseServiceType/{warehouseServiceTypeId}/file | Get the files for a warehouseServiceType.
*infoplus.WarehouseServiceTypeApi* | [**getWarehouseServiceTypeTags**](docs/WarehouseServiceTypeApi.md#getWarehouseServiceTypeTags) | **GET** /beta/warehouseServiceType/{warehouseServiceTypeId}/tag | Get the tags for a warehouseServiceType.
*infoplus.WarehouseServiceTypeApi* | [**updateWarehouseServiceType**](docs/WarehouseServiceTypeApi.md#updateWarehouseServiceType) | **PUT** /beta/warehouseServiceType | Update a warehouseServiceType
*infoplus.WarehouseServiceTypeApi* | [**updateWarehouseServiceTypeCustomFields**](docs/WarehouseServiceTypeApi.md#updateWarehouseServiceTypeCustomFields) | **PUT** /beta/warehouseServiceType/customFields | Update a warehouseServiceType custom fields
*infoplus.WorkApi* | [**addWorkAudit**](docs/WorkApi.md#addWorkAudit) | **PUT** /beta/work/{workId}/audit/{workAudit} | Add new audit for a work
*infoplus.WorkApi* | [**addWorkFile**](docs/WorkApi.md#addWorkFile) | **POST** /beta/work/{workId}/file/{fileName} | Attach a file to a work
*infoplus.WorkApi* | [**addWorkFileByURL**](docs/WorkApi.md#addWorkFileByURL) | **POST** /beta/work/{workId}/file | Attach a file to a work by URL.
*infoplus.WorkApi* | [**addWorkTag**](docs/WorkApi.md#addWorkTag) | **PUT** /beta/work/{workId}/tag/{workTag} | Add new tags for a work.
*infoplus.WorkApi* | [**deleteWorkFile**](docs/WorkApi.md#deleteWorkFile) | **DELETE** /beta/work/{workId}/file/{fileId} | Delete a file for a work.
*infoplus.WorkApi* | [**deleteWorkTag**](docs/WorkApi.md#deleteWorkTag) | **DELETE** /beta/work/{workId}/tag/{workTag} | Delete a tag for a work.
*infoplus.WorkApi* | [**getDuplicateWorkById**](docs/WorkApi.md#getDuplicateWorkById) | **GET** /beta/work/duplicate/{workId} | Get a duplicated a work by id
*infoplus.WorkApi* | [**getWorkByFilter**](docs/WorkApi.md#getWorkByFilter) | **GET** /beta/work/search | Search works by filter
*infoplus.WorkApi* | [**getWorkById**](docs/WorkApi.md#getWorkById) | **GET** /beta/work/{workId} | Get a work by id
*infoplus.WorkApi* | [**getWorkFiles**](docs/WorkApi.md#getWorkFiles) | **GET** /beta/work/{workId}/file | Get the files for a work.
*infoplus.WorkApi* | [**getWorkTags**](docs/WorkApi.md#getWorkTags) | **GET** /beta/work/{workId}/tag | Get the tags for a work.
*infoplus.WorkApi* | [**updateWork**](docs/WorkApi.md#updateWork) | **PUT** /beta/work | Update a work
*infoplus.WorkApi* | [**updateWorkCustomFields**](docs/WorkApi.md#updateWorkCustomFields) | **PUT** /beta/work/customFields | Update a work custom fields
*infoplus.WorkActivityApi* | [**addWorkActivity**](docs/WorkActivityApi.md#addWorkActivity) | **POST** /beta/workActivity | Create a workActivity
*infoplus.WorkActivityApi* | [**addWorkActivityAudit**](docs/WorkActivityApi.md#addWorkActivityAudit) | **PUT** /beta/workActivity/{workActivityId}/audit/{workActivityAudit} | Add new audit for a workActivity
*infoplus.WorkActivityApi* | [**addWorkActivityFile**](docs/WorkActivityApi.md#addWorkActivityFile) | **POST** /beta/workActivity/{workActivityId}/file/{fileName} | Attach a file to a workActivity
*infoplus.WorkActivityApi* | [**addWorkActivityFileByURL**](docs/WorkActivityApi.md#addWorkActivityFileByURL) | **POST** /beta/workActivity/{workActivityId}/file | Attach a file to a workActivity by URL.
*infoplus.WorkActivityApi* | [**addWorkActivityTag**](docs/WorkActivityApi.md#addWorkActivityTag) | **PUT** /beta/workActivity/{workActivityId}/tag/{workActivityTag} | Add new tags for a workActivity.
*infoplus.WorkActivityApi* | [**deleteWorkActivity**](docs/WorkActivityApi.md#deleteWorkActivity) | **DELETE** /beta/workActivity/{workActivityId} | Delete a workActivity
*infoplus.WorkActivityApi* | [**deleteWorkActivityFile**](docs/WorkActivityApi.md#deleteWorkActivityFile) | **DELETE** /beta/workActivity/{workActivityId}/file/{fileId} | Delete a file for a workActivity.
*infoplus.WorkActivityApi* | [**deleteWorkActivityTag**](docs/WorkActivityApi.md#deleteWorkActivityTag) | **DELETE** /beta/workActivity/{workActivityId}/tag/{workActivityTag} | Delete a tag for a workActivity.
*infoplus.WorkActivityApi* | [**getDuplicateWorkActivityById**](docs/WorkActivityApi.md#getDuplicateWorkActivityById) | **GET** /beta/workActivity/duplicate/{workActivityId} | Get a duplicated a workActivity by id
*infoplus.WorkActivityApi* | [**getWorkActivityByFilter**](docs/WorkActivityApi.md#getWorkActivityByFilter) | **GET** /beta/workActivity/search | Search workActivitys by filter
*infoplus.WorkActivityApi* | [**getWorkActivityById**](docs/WorkActivityApi.md#getWorkActivityById) | **GET** /beta/workActivity/{workActivityId} | Get a workActivity by id
*infoplus.WorkActivityApi* | [**getWorkActivityFiles**](docs/WorkActivityApi.md#getWorkActivityFiles) | **GET** /beta/workActivity/{workActivityId}/file | Get the files for a workActivity.
*infoplus.WorkActivityApi* | [**getWorkActivityTags**](docs/WorkActivityApi.md#getWorkActivityTags) | **GET** /beta/workActivity/{workActivityId}/tag | Get the tags for a workActivity.
*infoplus.WorkActivityApi* | [**updateWorkActivity**](docs/WorkActivityApi.md#updateWorkActivity) | **PUT** /beta/workActivity | Update a workActivity
*infoplus.WorkBatchApi* | [**addWorkBatchAudit**](docs/WorkBatchApi.md#addWorkBatchAudit) | **PUT** /beta/workBatch/{workBatchId}/audit/{workBatchAudit} | Add new audit for a workBatch
*infoplus.WorkBatchApi* | [**addWorkBatchFile**](docs/WorkBatchApi.md#addWorkBatchFile) | **POST** /beta/workBatch/{workBatchId}/file/{fileName} | Attach a file to a workBatch
*infoplus.WorkBatchApi* | [**addWorkBatchFileByURL**](docs/WorkBatchApi.md#addWorkBatchFileByURL) | **POST** /beta/workBatch/{workBatchId}/file | Attach a file to a workBatch by URL.
*infoplus.WorkBatchApi* | [**addWorkBatchTag**](docs/WorkBatchApi.md#addWorkBatchTag) | **PUT** /beta/workBatch/{workBatchId}/tag/{workBatchTag} | Add new tags for a workBatch.
*infoplus.WorkBatchApi* | [**deleteWorkBatchFile**](docs/WorkBatchApi.md#deleteWorkBatchFile) | **DELETE** /beta/workBatch/{workBatchId}/file/{fileId} | Delete a file for a workBatch.
*infoplus.WorkBatchApi* | [**deleteWorkBatchTag**](docs/WorkBatchApi.md#deleteWorkBatchTag) | **DELETE** /beta/workBatch/{workBatchId}/tag/{workBatchTag} | Delete a tag for a workBatch.
*infoplus.WorkBatchApi* | [**getDuplicateWorkBatchById**](docs/WorkBatchApi.md#getDuplicateWorkBatchById) | **GET** /beta/workBatch/duplicate/{workBatchId} | Get a duplicated a workBatch by id
*infoplus.WorkBatchApi* | [**getWorkBatchByFilter**](docs/WorkBatchApi.md#getWorkBatchByFilter) | **GET** /beta/workBatch/search | Search workBatchs by filter
*infoplus.WorkBatchApi* | [**getWorkBatchById**](docs/WorkBatchApi.md#getWorkBatchById) | **GET** /beta/workBatch/{workBatchId} | Get a workBatch by id
*infoplus.WorkBatchApi* | [**getWorkBatchFiles**](docs/WorkBatchApi.md#getWorkBatchFiles) | **GET** /beta/workBatch/{workBatchId}/file | Get the files for a workBatch.
*infoplus.WorkBatchApi* | [**getWorkBatchTags**](docs/WorkBatchApi.md#getWorkBatchTags) | **GET** /beta/workBatch/{workBatchId}/tag | Get the tags for a workBatch.
*infoplus.WorkBatchApi* | [**updateWorkBatch**](docs/WorkBatchApi.md#updateWorkBatch) | **PUT** /beta/workBatch | Update a workBatch
*infoplus.WorkBatchApi* | [**updateWorkBatchCustomFields**](docs/WorkBatchApi.md#updateWorkBatchCustomFields) | **PUT** /beta/workBatch/customFields | Update a workBatch custom fields
*infoplus.ZoneApi* | [**addZone**](docs/ZoneApi.md#addZone) | **POST** /beta/zone | Create a zone
*infoplus.ZoneApi* | [**addZoneAudit**](docs/ZoneApi.md#addZoneAudit) | **PUT** /beta/zone/{zoneId}/audit/{zoneAudit} | Add new audit for a zone
*infoplus.ZoneApi* | [**addZoneFile**](docs/ZoneApi.md#addZoneFile) | **POST** /beta/zone/{zoneId}/file/{fileName} | Attach a file to a zone
*infoplus.ZoneApi* | [**addZoneFileByURL**](docs/ZoneApi.md#addZoneFileByURL) | **POST** /beta/zone/{zoneId}/file | Attach a file to a zone by URL.
*infoplus.ZoneApi* | [**addZoneTag**](docs/ZoneApi.md#addZoneTag) | **PUT** /beta/zone/{zoneId}/tag/{zoneTag} | Add new tags for a zone.
*infoplus.ZoneApi* | [**deleteZone**](docs/ZoneApi.md#deleteZone) | **DELETE** /beta/zone/{zoneId} | Delete a zone
*infoplus.ZoneApi* | [**deleteZoneFile**](docs/ZoneApi.md#deleteZoneFile) | **DELETE** /beta/zone/{zoneId}/file/{fileId} | Delete a file for a zone.
*infoplus.ZoneApi* | [**deleteZoneTag**](docs/ZoneApi.md#deleteZoneTag) | **DELETE** /beta/zone/{zoneId}/tag/{zoneTag} | Delete a tag for a zone.
*infoplus.ZoneApi* | [**getDuplicateZoneById**](docs/ZoneApi.md#getDuplicateZoneById) | **GET** /beta/zone/duplicate/{zoneId} | Get a duplicated a zone by id
*infoplus.ZoneApi* | [**getZoneByFilter**](docs/ZoneApi.md#getZoneByFilter) | **GET** /beta/zone/search | Search zones by filter
*infoplus.ZoneApi* | [**getZoneById**](docs/ZoneApi.md#getZoneById) | **GET** /beta/zone/{zoneId} | Get a zone by id
*infoplus.ZoneApi* | [**getZoneFiles**](docs/ZoneApi.md#getZoneFiles) | **GET** /beta/zone/{zoneId}/file | Get the files for a zone.
*infoplus.ZoneApi* | [**getZoneTags**](docs/ZoneApi.md#getZoneTags) | **GET** /beta/zone/{zoneId}/tag | Get the tags for a zone.
*infoplus.ZoneApi* | [**updateZone**](docs/ZoneApi.md#updateZone) | **PUT** /beta/zone | Update a zone
*infoplus.ZoneApi* | [**updateZoneCustomFields**](docs/ZoneApi.md#updateZoneCustomFields) | **PUT** /beta/zone/customFields | Update a zone custom fields


## Documentation for Models

 - [infoplus.Aisle](docs/Aisle.md)
 - [infoplus.Alert](docs/Alert.md)
 - [infoplus.ApiResponse](docs/ApiResponse.md)
 - [infoplus.ApplyOrderWarehouseFulfillmentPlanInput](docs/ApplyOrderWarehouseFulfillmentPlanInput.md)
 - [infoplus.ApplyOrderWarehouseFulfillmentPlanOutput](docs/ApplyOrderWarehouseFulfillmentPlanOutput.md)
 - [infoplus.Asn](docs/Asn.md)
 - [infoplus.BillOfLading](docs/BillOfLading.md)
 - [infoplus.BillOfLadingCarrierInfoLine](docs/BillOfLadingCarrierInfoLine.md)
 - [infoplus.BillOfLadingOrderInfoLine](docs/BillOfLadingOrderInfoLine.md)
 - [infoplus.BillingCode](docs/BillingCode.md)
 - [infoplus.BillingCodeActivity](docs/BillingCodeActivity.md)
 - [infoplus.BillingCodeType](docs/BillingCodeType.md)
 - [infoplus.Building](docs/Building.md)
 - [infoplus.BusinessTransaction](docs/BusinessTransaction.md)
 - [infoplus.Carrier](docs/Carrier.md)
 - [infoplus.CarrierService](docs/CarrierService.md)
 - [infoplus.Cart](docs/Cart.md)
 - [infoplus.CartLocation](docs/CartLocation.md)
 - [infoplus.Carton](docs/Carton.md)
 - [infoplus.CartonActivity](docs/CartonActivity.md)
 - [infoplus.CartonContent](docs/CartonContent.md)
 - [infoplus.CartonType](docs/CartonType.md)
 - [infoplus.CustomField](docs/CustomField.md)
 - [infoplus.Customer](docs/Customer.md)
 - [infoplus.CustomerInvoiceTemplate](docs/CustomerInvoiceTemplate.md)
 - [infoplus.CustomerInvoiceTemplateLine](docs/CustomerInvoiceTemplateLine.md)
 - [infoplus.DynamicKitComponentLine](docs/DynamicKitComponentLine.md)
 - [infoplus.EDIDocumentType](docs/EDIDocumentType.md)
 - [infoplus.EdiDocument](docs/EdiDocument.md)
 - [infoplus.EditLineItemFulfillmentStrategyInputAPIModel](docs/EditLineItemFulfillmentStrategyInputAPIModel.md)
 - [infoplus.EmailTemplate](docs/EmailTemplate.md)
 - [infoplus.ExecuteJobInputAPIModel](docs/ExecuteJobInputAPIModel.md)
 - [infoplus.ExecuteQuickAdjustmentInputAPIModel](docs/ExecuteQuickAdjustmentInputAPIModel.md)
 - [infoplus.ExecuteQuickReceiptInputAPIModel](docs/ExecuteQuickReceiptInputAPIModel.md)
 - [infoplus.ExternalShipment](docs/ExternalShipment.md)
 - [infoplus.ExternalShippingSystem](docs/ExternalShippingSystem.md)
 - [infoplus.FinanceSystemConnection](docs/FinanceSystemConnection.md)
 - [infoplus.FinanceSystemConnectionLog](docs/FinanceSystemConnectionLog.md)
 - [infoplus.FulfillmentLayoutPosition](docs/FulfillmentLayoutPosition.md)
 - [infoplus.FulfillmentPlan](docs/FulfillmentPlan.md)
 - [infoplus.FulfillmentProcess](docs/FulfillmentProcess.md)
 - [infoplus.FulfillmentProcessLog](docs/FulfillmentProcessLog.md)
 - [infoplus.FulfillmentProcessPickBatchGroup](docs/FulfillmentProcessPickBatchGroup.md)
 - [infoplus.GetOrderPackDataInput](docs/GetOrderPackDataInput.md)
 - [infoplus.GetOrderPackDataOutput](docs/GetOrderPackDataOutput.md)
 - [infoplus.GetOrderWarehouseFulfillmentDataInput](docs/GetOrderWarehouseFulfillmentDataInput.md)
 - [infoplus.GetOrderWarehouseFulfillmentDataOutput](docs/GetOrderWarehouseFulfillmentDataOutput.md)
 - [infoplus.Gs1128Label](docs/Gs1128Label.md)
 - [infoplus.Gs1128Template](docs/Gs1128Template.md)
 - [infoplus.IntegrationPartner](docs/IntegrationPartner.md)
 - [infoplus.InventoryAdjustment](docs/InventoryAdjustment.md)
 - [infoplus.InventoryDetail](docs/InventoryDetail.md)
 - [infoplus.InventorySnapshot](docs/InventorySnapshot.md)
 - [infoplus.InventoryStorageActivity](docs/InventoryStorageActivity.md)
 - [infoplus.InvoiceTemplateLinePriceLevel](docs/InvoiceTemplateLinePriceLevel.md)
 - [infoplus.InvoiceWorksheet](docs/InvoiceWorksheet.md)
 - [infoplus.InvoiceWorksheetLine](docs/InvoiceWorksheetLine.md)
 - [infoplus.InvoiceWorksheetLineDetail](docs/InvoiceWorksheetLineDetail.md)
 - [infoplus.Item](docs/Item.md)
 - [infoplus.ItemAccountCode](docs/ItemAccountCode.md)
 - [infoplus.ItemActivity](docs/ItemActivity.md)
 - [infoplus.ItemActivityType](docs/ItemActivityType.md)
 - [infoplus.ItemBuyer](docs/ItemBuyer.md)
 - [infoplus.ItemCategory](docs/ItemCategory.md)
 - [infoplus.ItemLowstockCode](docs/ItemLowstockCode.md)
 - [infoplus.ItemProductCode](docs/ItemProductCode.md)
 - [infoplus.ItemReceipt](docs/ItemReceipt.md)
 - [infoplus.ItemReceiptActivity](docs/ItemReceiptActivity.md)
 - [infoplus.ItemSector](docs/ItemSector.md)
 - [infoplus.ItemSerial](docs/ItemSerial.md)
 - [infoplus.ItemSerialScheme](docs/ItemSerialScheme.md)
 - [infoplus.ItemSubCategory](docs/ItemSubCategory.md)
 - [infoplus.ItemSummaryCode](docs/ItemSummaryCode.md)
 - [infoplus.Job](docs/Job.md)
 - [infoplus.JobInput](docs/JobInput.md)
 - [infoplus.JobOutput](docs/JobOutput.md)
 - [infoplus.JobRecipe](docs/JobRecipe.md)
 - [infoplus.JobRecipeInput](docs/JobRecipeInput.md)
 - [infoplus.JobRecipeOutput](docs/JobRecipeOutput.md)
 - [infoplus.JobRecipeStep](docs/JobRecipeStep.md)
 - [infoplus.JobStep](docs/JobStep.md)
 - [infoplus.JobTime](docs/JobTime.md)
 - [infoplus.JobTimeActivity](docs/JobTimeActivity.md)
 - [infoplus.JobType](docs/JobType.md)
 - [infoplus.Kit](docs/Kit.md)
 - [infoplus.KitComponent](docs/KitComponent.md)
 - [infoplus.LegacyLowstockContact](docs/LegacyLowstockContact.md)
 - [infoplus.LineOfBusiness](docs/LineOfBusiness.md)
 - [infoplus.Load](docs/Load.md)
 - [infoplus.LoadContent](docs/LoadContent.md)
 - [infoplus.Location](docs/Location.md)
 - [infoplus.LocationAddressScheme](docs/LocationAddressScheme.md)
 - [infoplus.LocationBillingType](docs/LocationBillingType.md)
 - [infoplus.LocationFootprint](docs/LocationFootprint.md)
 - [infoplus.LoggedTime](docs/LoggedTime.md)
 - [infoplus.LoggedTimeType](docs/LoggedTimeType.md)
 - [infoplus.LowStock](docs/LowStock.md)
 - [infoplus.ManageScheduledPlans](docs/ManageScheduledPlans.md)
 - [infoplus.NonBusinessDay](docs/NonBusinessDay.md)
 - [infoplus.OmsOrder](docs/OmsOrder.md)
 - [infoplus.Order](docs/Order.md)
 - [infoplus.OrderActivity](docs/OrderActivity.md)
 - [infoplus.OrderExtraLineItemData](docs/OrderExtraLineItemData.md)
 - [infoplus.OrderExtraOrderData](docs/OrderExtraOrderData.md)
 - [infoplus.OrderInvoiceTemplateLineItemDescriptionEnum](docs/OrderInvoiceTemplateLineItemDescriptionEnum.md)
 - [infoplus.OrderLine](docs/OrderLine.md)
 - [infoplus.OrderLineActivity](docs/OrderLineActivity.md)
 - [infoplus.OrderLineItem](docs/OrderLineItem.md)
 - [infoplus.OrderLoadProgram](docs/OrderLoadProgram.md)
 - [infoplus.OrderSource](docs/OrderSource.md)
 - [infoplus.OrderSourceItemSetup](docs/OrderSourceItemSetup.md)
 - [infoplus.OrderSourceReservation](docs/OrderSourceReservation.md)
 - [infoplus.OrderSourceStockStatus](docs/OrderSourceStockStatus.md)
 - [infoplus.OrderWarehouseFulfillmentPlan](docs/OrderWarehouseFulfillmentPlan.md)
 - [infoplus.OrderWarehouseFulfillmentPlanDetail](docs/OrderWarehouseFulfillmentPlanDetail.md)
 - [infoplus.OrderWarehouseFulfillmentRawData](docs/OrderWarehouseFulfillmentRawData.md)
 - [infoplus.OrderWarehouseFulfillmentRawSkuData](docs/OrderWarehouseFulfillmentRawSkuData.md)
 - [infoplus.OverrideReceiptsForFulfillment](docs/OverrideReceiptsForFulfillment.md)
 - [infoplus.OverrideReturnAddress](docs/OverrideReturnAddress.md)
 - [infoplus.PackedCarton](docs/PackedCarton.md)
 - [infoplus.PackedItem](docs/PackedItem.md)
 - [infoplus.PackedMasterCarton](docs/PackedMasterCarton.md)
 - [infoplus.PackedPallet](docs/PackedPallet.md)
 - [infoplus.PackingDetail](docs/PackingDetail.md)
 - [infoplus.PackingPlan](docs/PackingPlan.md)
 - [infoplus.PackingPlanDetail](docs/PackingPlanDetail.md)
 - [infoplus.PackingSlipTemplateLineExtraDataEnum](docs/PackingSlipTemplateLineExtraDataEnum.md)
 - [infoplus.PackingSlipTemplateLineItemDescriptionEnum](docs/PackingSlipTemplateLineItemDescriptionEnum.md)
 - [infoplus.PalletType](docs/PalletType.md)
 - [infoplus.ParcelAccount](docs/ParcelAccount.md)
 - [infoplus.ParcelInvoice](docs/ParcelInvoice.md)
 - [infoplus.ParcelInvoiceLine](docs/ParcelInvoiceLine.md)
 - [infoplus.PerpetualInventoryLog](docs/PerpetualInventoryLog.md)
 - [infoplus.PickFaceAssignment](docs/PickFaceAssignment.md)
 - [infoplus.PredefinedCarton](docs/PredefinedCarton.md)
 - [infoplus.ProcessOutputAPIModel](docs/ProcessOutputAPIModel.md)
 - [infoplus.ProductType](docs/ProductType.md)
 - [infoplus.ProductionLot](docs/ProductionLot.md)
 - [infoplus.ProductionModel](docs/ProductionModel.md)
 - [infoplus.QuickAdjustment](docs/QuickAdjustment.md)
 - [infoplus.QuickReceipt](docs/QuickReceipt.md)
 - [infoplus.ReceivingProcess](docs/ReceivingProcess.md)
 - [infoplus.ReceivingWorksheet](docs/ReceivingWorksheet.md)
 - [infoplus.ReceivingWorksheetLineItem](docs/ReceivingWorksheetLineItem.md)
 - [infoplus.ReceivingWorksheetPutAwayPlan](docs/ReceivingWorksheetPutAwayPlan.md)
 - [infoplus.RecordFile](docs/RecordFile.md)
 - [infoplus.Replenishment](docs/Replenishment.md)
 - [infoplus.ReplenishmentPlan](docs/ReplenishmentPlan.md)
 - [infoplus.ReplenishmentProcess](docs/ReplenishmentProcess.md)
 - [infoplus.ReqManualSubstitutionInputAPIModel](docs/ReqManualSubstitutionInputAPIModel.md)
 - [infoplus.ReqParcelAccessoryData](docs/ReqParcelAccessoryData.md)
 - [infoplus.RunFulfillmentPlanInputAPIModel](docs/RunFulfillmentPlanInputAPIModel.md)
 - [infoplus.ScheduledPlanLog](docs/ScheduledPlanLog.md)
 - [infoplus.ServiceType](docs/ServiceType.md)
 - [infoplus.Shipment](docs/Shipment.md)
 - [infoplus.ShoppingCartConnection](docs/ShoppingCartConnection.md)
 - [infoplus.StandardBusinessDays](docs/StandardBusinessDays.md)
 - [infoplus.Store](docs/Store.md)
 - [infoplus.Substitution](docs/Substitution.md)
 - [infoplus.Supplement](docs/Supplement.md)
 - [infoplus.ThirdPartyParcelAccount](docs/ThirdPartyParcelAccount.md)
 - [infoplus.User](docs/User.md)
 - [infoplus.Vendor](docs/Vendor.md)
 - [infoplus.VendorComplianceSurvey](docs/VendorComplianceSurvey.md)
 - [infoplus.Warehouse](docs/Warehouse.md)
 - [infoplus.WarehouseDocument](docs/WarehouseDocument.md)
 - [infoplus.WarehouseDocumentType](docs/WarehouseDocumentType.md)
 - [infoplus.WarehouseServiceType](docs/WarehouseServiceType.md)
 - [infoplus.Work](docs/Work.md)
 - [infoplus.WorkActivity](docs/WorkActivity.md)
 - [infoplus.WorkBatch](docs/WorkBatch.md)
 - [infoplus.WorkProduct](docs/WorkProduct.md)
 - [infoplus.Zone](docs/Zone.md)


## Documentation for Authorization


### api_key

- **Type**: API key
- **API key parameter name**: API-Key
- **Location**: HTTP header

