npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

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

About

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

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

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

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

Open Software & Tools

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

© 2024 – Pkg Stats / Ryan Hefner

infoplus-javascript-client

v1.0.0

Published

Infoplus is a cloud platform to manage your inventory, orders, warehouse, and shipments.

Downloads

131

Readme

infoplus-javascript-client

Infoplus is a cloud platform to manage your inventory, orders, warehouse, and shipments.

The Infoplus API exposes the full breadth and depth of the Infoplus platform to all clients. With the Infoplus API, you can integrate Infoplus functionality into other platforms (e.g. your ERP, shopping cart, accounting system, etc.), enabling you to do, in your own platform, anything you can do in Infoplus.

This repository is a native JavaScript client for full access to the Infoplus API.

Infoplus API Resources

The Resources listed below will provide all the information you need to integrate with the Infoplus API.

Developer's Home Page

https://www.infopluscommerce.com/developers/

  • This site gives you an overview of the Infoplus API.
  • Get a general understanding of the API and quick steps on getting started.

Infoplus API Reference Site

http://developers.infopluscommerce.com/

  • The Infoplus API is a modern JSON + REST API, and the API Reference Site is the complete documentation of all endpoints, resources, and fields available in the API.
  • Whether you're using the API directly over HTTPS, or if you're using a pre-built Client Library like this one, the API Reference Site gives you the specific details you need for each API call available, along with live demo capabilities.
  • The API Reference Site also lets you request access to a free Demo Account to test out the API.

Have Questions?

JavaScript Client Details

Installation

For Node.js

npm

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

Then install it via:

npm install infoplus-javascript-client --save

git

If the library is hosted at a git repository, e.g. https://github.com/infopluscommerce/infoplus-javascript-client then install it via:

npm install infopluscommerce/infoplus-javascript-client --save

For browser

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

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

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

var infoplus = require('infoplus-javascript-client');

var defaultClient = infoplus.ApiClient.default;

// Configure API key authorization: api_key
var api_key = defaultClient.authentications['api_key'];
api_key.apiKey = "YOUR API KEY"


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://${YOUR_DOMAIN}/infoplus-wms/api

Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- infoplus.AisleApi | addAisle | POST /v1.0/aisle | Create an aisle infoplus.AisleApi | deleteAisle | DELETE /v1.0/aisle/{aisleId} | Delete an aisle infoplus.AisleApi | getAisleByFilter | GET /v1.0/aisle/search | Search aisles by filter infoplus.AisleApi | getAisleById | GET /v1.0/aisle/{aisleId} | Get an aisle by id infoplus.AisleApi | updateAisle | PUT /v1.0/aisle | Update an aisle infoplus.AlertApi | getAlertByFilter | GET /v1.0/alert/search | Search alerts by filter infoplus.AlertApi | getAlertById | GET /v1.0/alert/{alertId} | Get an alert by id infoplus.AsnApi | addAsn | POST /v1.0/asn | Create an asn infoplus.AsnApi | deleteAsn | DELETE /v1.0/asn/{asnId} | Delete an asn infoplus.AsnApi | getAsnByFilter | GET /v1.0/asn/search | Search asns by filter infoplus.AsnApi | getAsnById | GET /v1.0/asn/{asnId} | Get an asn by id infoplus.AsnApi | updateAsn | PUT /v1.0/asn | Update an asn infoplus.BillOfLadingApi | addBillOfLading | POST /v1.0/billOfLading | Create a billOfLading infoplus.BillOfLadingApi | deleteBillOfLading | DELETE /v1.0/billOfLading/{billOfLadingId} | Delete a billOfLading infoplus.BillOfLadingApi | getBillOfLadingByFilter | GET /v1.0/billOfLading/search | Search billOfLadings by filter infoplus.BillOfLadingApi | getBillOfLadingById | GET /v1.0/billOfLading/{billOfLadingId} | Get a billOfLading by id infoplus.BillOfLadingApi | updateBillOfLading | PUT /v1.0/billOfLading | Update a billOfLading infoplus.BillingCodeApi | addBillingCode | POST /v1.0/billingCode | Create a billingCode infoplus.BillingCodeApi | deleteBillingCode | DELETE /v1.0/billingCode/{billingCodeId} | Delete a billingCode infoplus.BillingCodeApi | getBillingCodeByFilter | GET /v1.0/billingCode/search | Search billingCodes by filter infoplus.BillingCodeApi | getBillingCodeById | GET /v1.0/billingCode/{billingCodeId} | Get a billingCode by id infoplus.BillingCodeApi | updateBillingCode | PUT /v1.0/billingCode | Update a billingCode infoplus.BillingCodeTypeApi | addBillingCodeType | POST /v1.0/billingCodeType | Create a billingCodeType infoplus.BillingCodeTypeApi | deleteBillingCodeType | DELETE /v1.0/billingCodeType/{billingCodeTypeId} | Delete a billingCodeType infoplus.BillingCodeTypeApi | getBillingCodeTypeByFilter | GET /v1.0/billingCodeType/search | Search billingCodeTypes by filter infoplus.BillingCodeTypeApi | getBillingCodeTypeById | GET /v1.0/billingCodeType/{billingCodeTypeId} | Get a billingCodeType by id infoplus.BillingCodeTypeApi | updateBillingCodeType | PUT /v1.0/billingCodeType | Update a billingCodeType infoplus.BuildingApi | addBuilding | POST /v1.0/building | Create a building infoplus.BuildingApi | deleteBuilding | DELETE /v1.0/building/{buildingId} | Delete a building infoplus.BuildingApi | getBuildingByFilter | GET /v1.0/building/search | Search buildings by filter infoplus.BuildingApi | getBuildingById | GET /v1.0/building/{buildingId} | Get a building by id infoplus.BuildingApi | updateBuilding | PUT /v1.0/building | Update a building infoplus.BusinessTransactionApi | getBusinessTransactionByFilter | GET /v1.0/businessTransaction/search | Search businessTransactions by filter infoplus.BusinessTransactionApi | getBusinessTransactionById | GET /v1.0/businessTransaction/{businessTransactionId} | Get a businessTransaction by id infoplus.CarrierApi | getCarrierById | GET /v1.0/carrier/{carrierId} | Get a carrier by id infoplus.CarrierApi | getCarrierBySearchText | GET /v1.0/carrier/search | Search carriers infoplus.CarrierServiceApi | getCarrierServiceById | GET /v1.0/carrierService/{carrierServiceId} | Get a carrierService by id infoplus.CarrierServiceApi | getCarrierServiceBySearchText | GET /v1.0/carrierService/search | Search carrierServices infoplus.CartonApi | addCarton | POST /v1.0/carton | Create a carton infoplus.CartonApi | deleteCarton | DELETE /v1.0/carton/{cartonId} | Delete a carton infoplus.CartonApi | getCartonByFilter | GET /v1.0/carton/search | Search cartons by filter infoplus.CartonApi | getCartonById | GET /v1.0/carton/{cartonId} | Get a carton by id infoplus.CartonApi | updateCarton | PUT /v1.0/carton | Update a carton infoplus.CartonContentApi | addCartonContent | POST /v1.0/cartonContent | Create a cartonContent infoplus.CartonContentApi | deleteCartonContent | DELETE /v1.0/cartonContent/{cartonContentId} | Delete a cartonContent infoplus.CartonContentApi | getCartonContentByFilter | GET /v1.0/cartonContent/search | Search cartonContents by filter infoplus.CartonContentApi | getCartonContentById | GET /v1.0/cartonContent/{cartonContentId} | Get a cartonContent by id infoplus.CartonContentApi | updateCartonContent | PUT /v1.0/cartonContent | Update a cartonContent infoplus.CartonTypeApi | addCartonType | POST /v1.0/cartonType | Create a cartonType infoplus.CartonTypeApi | deleteCartonType | DELETE /v1.0/cartonType/{cartonTypeId} | Delete a cartonType infoplus.CartonTypeApi | getCartonTypeByFilter | GET /v1.0/cartonType/search | Search cartonTypes by filter infoplus.CartonTypeApi | getCartonTypeById | GET /v1.0/cartonType/{cartonTypeId} | Get a cartonType by id infoplus.CartonTypeApi | updateCartonType | PUT /v1.0/cartonType | Update a cartonType infoplus.CustomerApi | addCustomer | POST /v1.0/customer | Create a customer infoplus.CustomerApi | deleteCustomer | DELETE /v1.0/customer/{customerId} | Delete a customer infoplus.CustomerApi | getByCustomerNo | GET /v1.0/customer/getByCustomerNo | Get a customer by Customer No infoplus.CustomerApi | getCustomerByFilter | GET /v1.0/customer/search | Search customers by filter infoplus.CustomerApi | getCustomerById | GET /v1.0/customer/{customerId} | Get a customer by id infoplus.CustomerApi | updateCustomer | PUT /v1.0/customer | Update a customer infoplus.EmailTemplateApi | addEmailTemplate | POST /v1.0/emailTemplate | Create an emailTemplate infoplus.EmailTemplateApi | deleteEmailTemplate | DELETE /v1.0/emailTemplate/{emailTemplateId} | Delete an emailTemplate infoplus.EmailTemplateApi | getEmailTemplateByFilter | GET /v1.0/emailTemplate/search | Search emailTemplates by filter infoplus.EmailTemplateApi | getEmailTemplateById | GET /v1.0/emailTemplate/{emailTemplateId} | Get an emailTemplate by id infoplus.EmailTemplateApi | updateEmailTemplate | PUT /v1.0/emailTemplate | Update an emailTemplate infoplus.ExternalShipmentApi | addExternalShipment | POST /v1.0/externalShipment | Create an externalShipment infoplus.ExternalShipmentApi | deleteExternalShipment | DELETE /v1.0/externalShipment/{externalShipmentId} | Delete an externalShipment infoplus.ExternalShipmentApi | getExternalShipmentByFilter | GET /v1.0/externalShipment/search | Search externalShipments by filter infoplus.ExternalShipmentApi | getExternalShipmentById | GET /v1.0/externalShipment/{externalShipmentId} | Get an externalShipment by id infoplus.ExternalShipmentApi | updateExternalShipment | PUT /v1.0/externalShipment | Update an externalShipment infoplus.FulfillmentPlanApi | addFulfillmentPlan | POST /v1.0/fulfillmentPlan | Create a fulfillmentPlan infoplus.FulfillmentPlanApi | deleteFulfillmentPlan | DELETE /v1.0/fulfillmentPlan/{fulfillmentPlanId} | Delete a fulfillmentPlan infoplus.FulfillmentPlanApi | getFulfillmentPlanByFilter | GET /v1.0/fulfillmentPlan/search | Search fulfillmentPlans by filter infoplus.FulfillmentPlanApi | getFulfillmentPlanById | GET /v1.0/fulfillmentPlan/{fulfillmentPlanId} | Get a fulfillmentPlan by id infoplus.FulfillmentPlanApi | updateFulfillmentPlan | PUT /v1.0/fulfillmentPlan | Update a fulfillmentPlan infoplus.FulfillmentProcessApi | getFulfillmentProcessByFilter | GET /v1.0/fulfillmentProcess/search | Search fulfillmentProcesses by filter infoplus.FulfillmentProcessApi | getFulfillmentProcessById | GET /v1.0/fulfillmentProcess/{fulfillmentProcessId} | Get a fulfillmentProcess by id infoplus.IntegrationPartnerApi | getIntegrationPartnerById | GET /v1.0/integrationPartner/{integrationPartnerId} | Get an integrationPartner by id infoplus.IntegrationPartnerApi | getIntegrationPartnerBySearchText | GET /v1.0/integrationPartner/search | Search integrationPartners infoplus.InventoryAdjustmentApi | getInventoryAdjustmentByFilter | GET /v1.0/inventoryAdjustment/search | Search inventoryAdjustments by filter infoplus.InventoryAdjustmentApi | getInventoryAdjustmentById | GET /v1.0/inventoryAdjustment/{inventoryAdjustmentId} | Get an inventoryAdjustment by id infoplus.InventoryDetailApi | getInventoryDetailByFilter | GET /v1.0/inventoryDetail/search | Search inventoryDetails by filter infoplus.InventoryDetailApi | getInventoryDetailById | GET /v1.0/inventoryDetail/{inventoryDetailId} | Get an inventoryDetail by id infoplus.ItemApi | addItem | POST /v1.0/item | Create an item infoplus.ItemApi | deleteItem | DELETE /v1.0/item/{itemId} | Delete an item infoplus.ItemApi | getBySKU | GET /v1.0/item/getBySKU | Get an item by SKU infoplus.ItemApi | getItemByFilter | GET /v1.0/item/search | Search items by filter infoplus.ItemApi | getItemById | GET /v1.0/item/{itemId} | Get an item by id infoplus.ItemApi | updateItem | PUT /v1.0/item | Update an item infoplus.ItemAccountCodeApi | getItemAccountCodeBySearchText | GET /v1.0/itemAccountCode/search | Search itemAccountCodes infoplus.ItemAccountCodeApi | getTranslateAccountCodeById | GET /v1.0/itemAccountCode/{itemAccountCodeId} | Get an itemAccountCode by id infoplus.ItemBuyerApi | getItemBuyerBySearchText | GET /v1.0/itemBuyer/search | Search itemBuyers infoplus.ItemBuyerApi | getTranslateBuyerById | GET /v1.0/itemBuyer/{itemBuyerId} | Get an itemBuyer by id infoplus.ItemLegacyLowStockContactApi | getItemLegacyLowStockContactBySearchText | GET /v1.0/itemLegacyLowStockContact/search | Search itemLegacyLowStockContacts infoplus.ItemLegacyLowStockContactApi | getTranslateLowStockContactById | GET /v1.0/itemLegacyLowStockContact/{itemLegacyLowStockContactId} | Get an itemLegacyLowStockContact by id infoplus.ItemLowStockCodeApi | getItemLowStockCodeBySearchText | GET /v1.0/itemLowStockCode/search | Search itemLowStockCodes infoplus.ItemLowStockCodeApi | getTranslateLowStockCodeById | GET /v1.0/itemLowStockCode/{itemLowStockCodeId} | Get an itemLowStockCode by id infoplus.ItemMajorGroupApi | getItemMajorGroupBySearchText | GET /v1.0/itemMajorGroup/search | Search itemMajorGroups infoplus.ItemMajorGroupApi | getTranslateMajorGroupById | GET /v1.0/itemMajorGroup/{itemMajorGroupId} | Get an itemMajorGroup by id infoplus.ItemProductCodeApi | getItemProductCodeBySearchText | GET /v1.0/itemProductCode/search | Search itemProductCodes infoplus.ItemProductCodeApi | getTranslateProductCodeById | GET /v1.0/itemProductCode/{itemProductCodeId} | Get an itemProductCode by id infoplus.ItemReceiptApi | getItemReceiptByFilter | GET /v1.0/itemReceipt/search | Search itemReceipts by filter infoplus.ItemReceiptApi | getItemReceiptById | GET /v1.0/itemReceipt/{itemReceiptId} | Get an itemReceipt by id infoplus.ItemSubGroupApi | getItemSubGroupBySearchText | GET /v1.0/itemSubGroup/search | Search itemSubGroups infoplus.ItemSubGroupApi | getTranslateSubGroupById | GET /v1.0/itemSubGroup/{itemSubGroupId} | Get an itemSubGroup by id infoplus.ItemSummaryCodeApi | getItemSummaryCodeBySearchText | GET /v1.0/itemSummaryCode/search | Search itemSummaryCodes infoplus.ItemSummaryCodeApi | getTranslateSummaryCodeById | GET /v1.0/itemSummaryCode/{itemSummaryCodeId} | Get an itemSummaryCode by id infoplus.JobTimeApi | addJobTime | POST /v1.0/jobTime | Create a jobTime infoplus.JobTimeApi | deleteJobTime | DELETE /v1.0/jobTime/{jobTimeId} | Delete a jobTime infoplus.JobTimeApi | getJobTimeByFilter | GET /v1.0/jobTime/search | Search jobTimes by filter infoplus.JobTimeApi | getJobTimeById | GET /v1.0/jobTime/{jobTimeId} | Get a jobTime by id infoplus.JobTimeApi | updateJobTime | PUT /v1.0/jobTime | Update a jobTime infoplus.JobTypeApi | addJobType | POST /v1.0/jobType | Create a jobType infoplus.JobTypeApi | deleteJobType | DELETE /v1.0/jobType/{jobTypeId} | Delete a jobType infoplus.JobTypeApi | getJobTypeByFilter | GET /v1.0/jobType/search | Search jobTypes by filter infoplus.JobTypeApi | getJobTypeById | GET /v1.0/jobType/{jobTypeId} | Get a jobType by id infoplus.JobTypeApi | updateJobType | PUT /v1.0/jobType | Update a jobType infoplus.LineOfBusinessApi | getLineOfBusinessById | GET /v1.0/lineOfBusiness/{lineOfBusinessId} | Get a lineOfBusiness by id infoplus.LineOfBusinessApi | getLineOfBusinessBySearchText | GET /v1.0/lineOfBusiness/search | Search lineOfBusinesses infoplus.LocationApi | addLocation | POST /v1.0/location | Create a location infoplus.LocationApi | deleteLocation | DELETE /v1.0/location/{locationId} | Delete a location infoplus.LocationApi | getLocationByFilter | GET /v1.0/location/search | Search locations by filter infoplus.LocationApi | getLocationById | GET /v1.0/location/{locationId} | Get a location by id infoplus.LocationApi | updateLocation | PUT /v1.0/location | Update a location infoplus.LocationAddressSchemeApi | addLocationAddressScheme | POST /v1.0/locationAddressScheme | Create a locationAddressScheme infoplus.LocationAddressSchemeApi | deleteLocationAddressScheme | DELETE /v1.0/locationAddressScheme/{locationAddressSchemeId} | Delete a locationAddressScheme infoplus.LocationAddressSchemeApi | getLocationAddressSchemeByFilter | GET /v1.0/locationAddressScheme/search | Search locationAddressSchemes by filter infoplus.LocationAddressSchemeApi | getLocationAddressSchemeById | GET /v1.0/locationAddressScheme/{locationAddressSchemeId} | Get a locationAddressScheme by id infoplus.LocationAddressSchemeApi | updateLocationAddressScheme | PUT /v1.0/locationAddressScheme | Update a locationAddressScheme infoplus.LocationBillingTypeApi | addLocationBillingType | POST /v1.0/locationBillingType | Create a locationBillingType infoplus.LocationBillingTypeApi | deleteLocationBillingType | DELETE /v1.0/locationBillingType/{locationBillingTypeId} | Delete a locationBillingType infoplus.LocationBillingTypeApi | getLocationBillingTypeByFilter | GET /v1.0/locationBillingType/search | Search locationBillingTypes by filter infoplus.LocationBillingTypeApi | getLocationBillingTypeById | GET /v1.0/locationBillingType/{locationBillingTypeId} | Get a locationBillingType by id infoplus.LocationBillingTypeApi | updateLocationBillingType | PUT /v1.0/locationBillingType | Update a locationBillingType infoplus.LocationFootprintApi | addLocationFootprint | POST /v1.0/locationFootprint | Create a locationFootprint infoplus.LocationFootprintApi | deleteLocationFootprint | DELETE /v1.0/locationFootprint/{locationFootprintId} | Delete a locationFootprint infoplus.LocationFootprintApi | getLocationFootprintByFilter | GET /v1.0/locationFootprint/search | Search locationFootprints by filter infoplus.LocationFootprintApi | getLocationFootprintById | GET /v1.0/locationFootprint/{locationFootprintId} | Get a locationFootprint by id infoplus.LocationFootprintApi | updateLocationFootprint | PUT /v1.0/locationFootprint | Update a locationFootprint infoplus.LoggedTimeApi | getLoggedTimeByFilter | GET /v1.0/loggedTime/search | Search loggedTimes by filter infoplus.LoggedTimeApi | getLoggedTimeById | GET /v1.0/loggedTime/{loggedTimeId} | Get a loggedTime by id infoplus.LoggedTimeTypeApi | getLoggedTimeTypeById | GET /v1.0/loggedTimeType/{loggedTimeTypeId} | Get a loggedTimeType by id infoplus.LoggedTimeTypeApi | getLoggedTimeTypeBySearchText | GET /v1.0/loggedTimeType/search | Search loggedTimeTypes infoplus.LowStockApi | getLowStockByFilter | GET /v1.0/lowStock/search | Search lowStocks by filter infoplus.LowStockApi | getLowStockById | GET /v1.0/lowStock/{lowStockId} | Get a lowStock by id infoplus.OrderApi | addOrder | POST /v1.0/order | Create an order infoplus.OrderApi | deleteOrder | DELETE /v1.0/order/{orderId} | Delete an order infoplus.OrderApi | getOrderByFilter | GET /v1.0/order/search | Search orders by filter infoplus.OrderApi | getOrderById | GET /v1.0/order/{orderId} | Get an order by id infoplus.OrderApi | updateOrder | PUT /v1.0/order | Update an order infoplus.OrderLineApi | getOrderLineByFilter | GET /v1.0/orderLine/search | Search orderLines by filter infoplus.OrderLineApi | getOrderLineById | GET /v1.0/orderLine/{orderLineId} | Get an orderLine by id infoplus.OrderLoadProgramApi | getOrderLoadProgramBySearchText | GET /v1.0/orderLoadProgram/search | Search orderLoadPrograms infoplus.OrderLoadProgramApi | getReqLoadProgramById | GET /v1.0/orderLoadProgram/{orderLoadProgramId} | Get an orderLoadProgram by id infoplus.OrderSourceApi | addOrderSource | POST /v1.0/orderSource | Create an orderSource infoplus.OrderSourceApi | deleteOrderSource | DELETE /v1.0/orderSource/{orderSourceId} | Delete an orderSource infoplus.OrderSourceApi | getOrderSourceByFilter | GET /v1.0/orderSource/search | Search orderSources by filter infoplus.OrderSourceApi | getOrderSourceById | GET /v1.0/orderSource/{orderSourceId} | Get an orderSource by id infoplus.OrderSourceApi | updateOrderSource | PUT /v1.0/orderSource | Update an orderSource infoplus.OrderSourceReservationApi | addOrderSourceReservation | POST /v1.0/orderSourceReservation | Create an orderSourceReservation infoplus.OrderSourceReservationApi | deleteOrderSourceReservation | DELETE /v1.0/orderSourceReservation/{orderSourceReservationId} | Delete an orderSourceReservation infoplus.OrderSourceReservationApi | getOrderSourceReservationByFilter | GET /v1.0/orderSourceReservation/search | Search orderSourceReservations by filter infoplus.OrderSourceReservationApi | getOrderSourceReservationById | GET /v1.0/orderSourceReservation/{orderSourceReservationId} | Get an orderSourceReservation by id infoplus.OrderSourceReservationApi | updateOrderSourceReservation | PUT /v1.0/orderSourceReservation | Update an orderSourceReservation infoplus.OverrideReturnAddressApi | addOverrideReturnAddress | POST /v1.0/overrideReturnAddress | Create an overrideReturnAddress infoplus.OverrideReturnAddressApi | deleteOverrideReturnAddress | DELETE /v1.0/overrideReturnAddress/{overrideReturnAddressId} | Delete an overrideReturnAddress infoplus.OverrideReturnAddressApi | getOverrideReturnAddressByFilter | GET /v1.0/overrideReturnAddress/search | Search overrideReturnAddresses by filter infoplus.OverrideReturnAddressApi | getOverrideReturnAddressById | GET /v1.0/overrideReturnAddress/{overrideReturnAddressId} | Get an overrideReturnAddress by id infoplus.OverrideReturnAddressApi | updateOverrideReturnAddress | PUT /v1.0/overrideReturnAddress | Update an overrideReturnAddress infoplus.ParcelAccountApi | getParcelAccountByFilter | GET /v1.0/parcelAccount/search | Search parcelAccounts by filter infoplus.ParcelAccountApi | getParcelAccountById | GET /v1.0/parcelAccount/{parcelAccountId} | Get a parcelAccount by id infoplus.ParcelShipmentApi | getParcelShipmentByFilter | GET /v1.0/parcelShipment/search | Search parcelShipments by filter infoplus.ParcelShipmentApi | getParcelShipmentById | GET /v1.0/parcelShipment/{parcelShipmentId} | Get a parcelShipment by id infoplus.PickFaceAssignmentApi | addPickFaceAssignment | POST /v1.0/pickFaceAssignment | Create a pickFaceAssignment infoplus.PickFaceAssignmentApi | deletePickFaceAssignment | DELETE /v1.0/pickFaceAssignment/{pickFaceAssignmentId} | Delete a pickFaceAssignment infoplus.PickFaceAssignmentApi | getPickFaceAssignmentByFilter | GET /v1.0/pickFaceAssignment/search | Search pickFaceAssignments by filter infoplus.PickFaceAssignmentApi | getPickFaceAssignmentById | GET /v1.0/pickFaceAssignment/{pickFaceAssignmentId} | Get a pickFaceAssignment by id infoplus.PickFaceAssignmentApi | updatePickFaceAssignment | PUT /v1.0/pickFaceAssignment | Update a pickFaceAssignment infoplus.ProductTypeApi | getProductTypeById | GET /v1.0/productType/{productTypeId} | Get a productType by id infoplus.ProductTypeApi | getProductTypeBySearchText | GET /v1.0/productType/search | Search productTypes infoplus.ProductionLotApi | getProductionLotByFilter | GET /v1.0/productionLot/search | Search productionLots by filter infoplus.ProductionLotApi | getProductionLotById | GET /v1.0/productionLot/{productionLotId} | Get a productionLot by id infoplus.QuickAdjustmentApi | addQuickAdjustment | POST /v1.0/quickAdjustment | Create a quickAdjustment infoplus.QuickAdjustmentApi | deleteQuickAdjustment | DELETE /v1.0/quickAdjustment/{quickAdjustmentId} | Delete a quickAdjustment infoplus.QuickAdjustmentApi | getQuickAdjustmentByFilter | GET /v1.0/quickAdjustment/search | Search quickAdjustments by filter infoplus.QuickAdjustmentApi | getQuickAdjustmentById | GET /v1.0/quickAdjustment/{quickAdjustmentId} | Get a quickAdjustment by id infoplus.QuickAdjustmentApi | updateQuickAdjustment | PUT /v1.0/quickAdjustment | Update a quickAdjustment infoplus.QuickReceiptApi | addQuickReceipt | POST /v1.0/quickReceipt | Create a quickReceipt infoplus.QuickReceiptApi | deleteQuickReceipt | DELETE /v1.0/quickReceipt/{quickReceiptId} | Delete a quickReceipt infoplus.QuickReceiptApi | getQuickReceiptByFilter | GET /v1.0/quickReceipt/search | Search quickReceipts by filter infoplus.QuickReceiptApi | getQuickReceiptById | GET /v1.0/quickReceipt/{quickReceiptId} | Get a quickReceipt by id infoplus.QuickReceiptApi | updateQuickReceipt | PUT /v1.0/quickReceipt | Update a quickReceipt infoplus.ReceivingProcessApi | deleteReceivingProcess | DELETE /v1.0/receivingProcess/{receivingProcessId} | Delete a receivingProcess infoplus.ReceivingProcessApi | getReceivingProcessByFilter | GET /v1.0/receivingProcess/search | Search receivingProcesses by filter infoplus.ReceivingProcessApi | getReceivingProcessById | GET /v1.0/receivingProcess/{receivingProcessId} | Get a receivingProcess by id infoplus.ReceivingWorksheetApi | addReceivingWorksheet | POST /v1.0/receivingWorksheet | Create a receivingWorksheet infoplus.ReceivingWorksheetApi | deleteReceivingWorksheet | DELETE /v1.0/receivingWorksheet/{receivingWorksheetId} | Delete a receivingWorksheet infoplus.ReceivingWorksheetApi | getReceivingWorksheetByFilter | GET /v1.0/receivingWorksheet/search | Search receivingWorksheets by filter infoplus.ReceivingWorksheetApi | getReceivingWorksheetById | GET /v1.0/receivingWorksheet/{receivingWorksheetId} | Get a receivingWorksheet by id infoplus.ReceivingWorksheetApi | updateReceivingWorksheet | PUT /v1.0/receivingWorksheet | Update a receivingWorksheet infoplus.ReplenishmentApi | getReplenishmentByFilter | GET /v1.0/replenishment/search | Search replenishments by filter infoplus.ReplenishmentApi | getReplenishmentById | GET /v1.0/replenishment/{replenishmentId} | Get a replenishment by id infoplus.ReplenishmentPlanApi | addReplenishmentPlan | POST /v1.0/replenishmentPlan | Create a replenishmentPlan infoplus.ReplenishmentPlanApi | deleteReplenishmentPlan | DELETE /v1.0/replenishmentPlan/{replenishmentPlanId} | Delete a replenishmentPlan infoplus.ReplenishmentPlanApi | getReplenishmentPlanByFilter | GET /v1.0/replenishmentPlan/search | Search replenishmentPlans by filter infoplus.ReplenishmentPlanApi | getReplenishmentPlanById | GET /v1.0/replenishmentPlan/{replenishmentPlanId} | Get a replenishmentPlan by id infoplus.ReplenishmentPlanApi | updateReplenishmentPlan | PUT /v1.0/replenishmentPlan | Update a replenishmentPlan infoplus.ReplenishmentProcessApi | getReplenishmentProcessByFilter | GET /v1.0/replenishmentProcess/search | Search replenishmentProcesses by filter infoplus.ReplenishmentProcessApi | getReplenishmentProcessById | GET /v1.0/replenishmentProcess/{replenishmentProcessId} | Get a replenishmentProcess by id infoplus.ServiceTypeApi | getServiceTypeById | GET /v1.0/serviceType/{serviceTypeId} | Get a serviceType by id infoplus.ServiceTypeApi | getServiceTypeBySearchText | GET /v1.0/serviceType/search | Search serviceTypes infoplus.ShoppingCartConnectionApi | addShoppingCartConnection | POST /v1.0/shoppingCartConnection | Create a shoppingCartConnection infoplus.ShoppingCartConnectionApi | deleteShoppingCartConnection | DELETE /v1.0/shoppingCartConnection/{shoppingCartConnectionId} | Delete a shoppingCartConnection infoplus.ShoppingCartConnectionApi | getShoppingCartConnectionByFilter | GET /v1.0/shoppingCartConnection/search | Search shoppingCartConnections by filter infoplus.ShoppingCartConnectionApi | getShoppingCartConnectionById | GET /v1.0/shoppingCartConnection/{shoppingCartConnectionId} | Get a shoppingCartConnection by id infoplus.ShoppingCartConnectionApi | updateShoppingCartConnection | PUT /v1.0/shoppingCartConnection | Update a shoppingCartConnection infoplus.ThirdPartyParcelAccountApi | addThirdPartyParcelAccount | POST /v1.0/thirdPartyParcelAccount | Create a thirdPartyParcelAccount infoplus.ThirdPartyParcelAccountApi | deleteThirdPartyParcelAccount | DELETE /v1.0/thirdPartyParcelAccount/{thirdPartyParcelAccountId} | Delete a thirdPartyParcelAccount infoplus.ThirdPartyParcelAccountApi | getThirdPartyParcelAccountByFilter | GET /v1.0/thirdPartyParcelAccount/search | Search thirdPartyParcelAccounts by filter infoplus.ThirdPartyParcelAccountApi | getThirdPartyParcelAccountById | GET /v1.0/thirdPartyParcelAccount/{thirdPartyParcelAccountId} | Get a thirdPartyParcelAccount by id infoplus.ThirdPartyParcelAccountApi | updateThirdPartyParcelAccount | PUT /v1.0/thirdPartyParcelAccount | Update a thirdPartyParcelAccount infoplus.UserApi | getUserById | GET /v1.0/user/{userId} | Get an user by id infoplus.UserApi | getUserBySearchText | GET /v1.0/user/search | Search users infoplus.VendorApi | addVendor | POST /v1.0/vendor | Create a vendor infoplus.VendorApi | deleteVendor | DELETE /v1.0/vendor/{vendorId} | Delete a vendor infoplus.VendorApi | getVendorByFilter | GET /v1.0/vendor/search | Search vendors by filter infoplus.VendorApi | getVendorById | GET /v1.0/vendor/{vendorId} | Get a vendor by id infoplus.VendorApi | updateVendor | PUT /v1.0/vendor | Update a vendor infoplus.VendorComplianceSurveyApi | addVendorComplianceSurvey | POST /v1.0/vendorComplianceSurvey | Create a vendorComplianceSurvey infoplus.VendorComplianceSurveyApi | deleteVendorComplianceSurvey | DELETE /v1.0/vendorComplianceSurvey/{vendorComplianceSurveyId} | Delete a vendorComplianceSurvey infoplus.VendorComplianceSurveyApi | getVendorComplianceSurveyByFilter | GET /v1.0/vendorComplianceSurvey/search | Search vendorComplianceSurveys by filter infoplus.VendorComplianceSurveyApi | getVendorComplianceSurveyById | GET /v1.0/vendorComplianceSurvey/{vendorComplianceSurveyId} | Get a vendorComplianceSurvey by id infoplus.VendorComplianceSurveyApi | updateVendorComplianceSurvey | PUT /v1.0/vendorComplianceSurvey | Update a vendorComplianceSurvey infoplus.WarehouseApi | getWarehouseByFilter | GET /v1.0/warehouse/search | Search warehouses by filter infoplus.WarehouseApi | getWarehouseById | GET /v1.0/warehouse/{warehouseId} | Get a warehouse by id infoplus.WarehouseApi | updateWarehouse | PUT /v1.0/warehouse | Update a warehouse infoplus.WarehouseDocumentApi | getWarehouseDocumentByFilter | GET /v1.0/warehouseDocument/search | Search warehouseDocuments by filter infoplus.WarehouseDocumentApi | getWarehouseDocumentById | GET /v1.0/warehouseDocument/{warehouseDocumentId} | Get a warehouseDocument by id infoplus.WarehouseDocumentTypeApi | getWarehouseDocumentTypeByFilter | GET /v1.0/warehouseDocumentType/search | Search warehouseDocumentTypes by filter infoplus.WarehouseDocumentTypeApi | getWarehouseDocumentTypeById | GET /v1.0/warehouseDocumentType/{warehouseDocumentTypeId} | Get a warehouseDocumentType by id infoplus.WorkApi | getWorkByFilter | GET /v1.0/work/search | Search works by filter infoplus.WorkApi | getWorkById | GET /v1.0/work/{workId} | Get a work by id infoplus.WorkBatchApi | getWorkBatchByFilter | GET /v1.0/workBatch/search | Search workBatchs by filter infoplus.WorkBatchApi | getWorkBatchById | GET /v1.0/workBatch/{workBatchId} | Get a workBatch by id infoplus.ZoneApi | addZone | POST /v1.0/zone | Create a zone infoplus.ZoneApi | deleteZone | DELETE /v1.0/zone/{zoneId} | Delete a zone infoplus.ZoneApi | getZoneByFilter | GET /v1.0/zone/search | Search zones by filter infoplus.ZoneApi | getZoneById | GET /v1.0/zone/{zoneId} | Get a zone by id infoplus.ZoneApi | updateZone | PUT /v1.0/zone | Update a zone

Documentation for Models

Documentation for Authorization

api_key

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