Skip to content

Latest commit

 

History

History

integrationapi-pythonsdk

swagger-client

This is a sample definition of the Oracle WMS Cloud Integration API. The views expressed here are my own and do not necessarily reflect the views of Oracle.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com//.git

(you may need to run pip with root permission: sudo pip install git+https://github.com//.git)

Then import the package:

import swagger_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import swagger_client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure HTTP basic authorization: basic
configuration = swagger_client.Configuration()
configuration.username = 'YOUR_USERNAME'
configuration.password = 'YOUR_PASSWORD'

# create an instance of the API class
api_instance = swagger_client.DefaultApi(swagger_client.ApiClient(configuration))
load_nbr = 'load_nbr_example' # str | 
oblpn_nbr = 'oblpn_nbr_example' # str | 
carrier_code = 'carrier_code_example' # str |  (optional)
company_code = 'company_code_example' # str |  (optional)
delimiter = 'delimiter_example' # str |  (optional)
facility_code = 'facility_code_example' # str |  (optional)
reassign_load_flg = true # bool |  (optional)
require_specific_oblpn_status = 56 # int |  (optional)
trailer_nbr = 'trailer_nbr_example' # str |  (optional)

try:
    # Assign OBLPN to Load
    api_response = api_instance.assign_oblp_nto_load(load_nbr, oblpn_nbr, carrier_code=carrier_code, company_code=company_code, delimiter=delimiter, facility_code=facility_code, reassign_load_flg=reassign_load_flg, require_specific_oblpn_status=require_specific_oblpn_status, trailer_nbr=trailer_nbr)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->assign_oblp_nto_load: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://demo.wms.ocs.oraclecloud.com/demo_a9/wms/api

Class Method HTTP request Description
DefaultApi assign_oblp_nto_load POST /assign_oblpn_to_load/ Assign OBLPN to Load
DefaultApi assignand_load_lpn POST /assign_and_load_oblpn/ Assign and Load LPN
DefaultApi create_lpn POST /create_lpn/ Create LPN
DefaultApi divert_confirm POST /divert_confirm/ Divert Confirm
DefaultApi entity_update PATCH /entity/{entity_name}/{key}/{sequence_number}/ Entity Update
DefaultApi extended_property GET /extended_property/{entity_name}/{key}/{extended_property}/ Extended Property
DefaultApi from_mhe_distribution_pack POST /from_mhe_distribution_pack/ From MHE Distribution Pack
DefaultApi from_mhe_distribution_short POST /from_mhe_distribution_short/ From MHE Distribution Short
DefaultApi get_next_numbers POST /get_next_numbers/ Get Next Numbers
DefaultApi get_status POST /get_status/ Get Status
DefaultApi induct_lpn POST /induct_lpn/ Induct LPN
DefaultApi init_stage_interface POST /init_stage_interface/ Init Stage Interface
DefaultApi lock_unlock_lpn POST /lock_unlock_lpn/ Lock/Unlock LPN
DefaultApi object_inquiry GET /entity/{entity}/{key}/ Object Inquiry
DefaultApi pick_confirm POST /pick_confirm/ Pick Confirm
DefaultApi receive_lpn POST /receive_lpn/ Receive LPN
DefaultApi run_mhe_stage_interface POST /run_mhe_stage_interface/ Run MHE Stage Interface
DefaultApi run_stage_interface POST /run_stage_interface/ Run Stage Interface
DefaultApi ship_oblpn POST /ship_oblpn Ship OBLPN
DefaultApi update_active_inventory PATCH /entity/active_inventory/{location_barcode}/ Update Active Inventory
DefaultApi update_carrier_lpn_label POST /update_carrier_lpn_label/ Update Carrier LPN Label
DefaultApi update_oblpn_dimensions POST /update_oblpn_dims/ Update OBLPN Dimensions
DefaultApi update_oblpn_tracking_number POST /update_oblpn_tracing_nbr/ Update OBLPN Tracking Number
DefaultApi update_output_interface POST /update_output_interface/ Update Output Interface

Documentation For Models

Documentation For Authorization

basic

  • Type: HTTP basic authentication

Author