Creating Item Lots Using REST API in Oracle Fusion Oracle Fusion Inventory Management provides multiple REST API services to create the transactions and to fetch the data from Inventory Management. Below are the steps involved in creating an Item Lot using REST API. Construct the Request URL Set the Authentication Prepare the Request Body For more information on Step#1 and 2, You may review my earlier post https://xplorefusion.blogspot.com/2020/03/prerequisites-in-invoking-rest-api.html Prepare the Request Body: Elements in the request body will depend on the business requirement. Below is a simple example to create an Item Lot. { "OrganizationId":"300000043518896", "InventoryItemId": 300000045573119, "LotNumber": "SF20181208", "ActiveLot":"Yes", "OriginationDate":"2020-03-31T18:30:00+00:00" } Prerequisit
My Technical Journal. I wish to document my learnings