Download Postman application from
https://www.postman.com/downloads/
1. Test Logon
In Postman application, click 'New'
Select HTTP
Select POST method and enter service layer URL.
https://[SERVER NAME]:50000/b1s/v1/Login
Select 'Body' tab, 'raw' tab and enter parameters and value. Click 'Send'.
{
"CompanyDB": "SBODemoAU",
"UserName": "manager",
"Password": "1234"
}
Below will be displayed if logon successful.
2. Test retrieving Item List
Select GET method and enter service layer URL.
https://localhost:50000/b1s/v1/Items
Select 'Body' tab and 'none' tab. Click 'Send'
List of Items will be displayed.
3. Close Production Order
Select PATCH method and enter service layer URL.
https://localhost/b1s/v1/ProductionOrders(<productionorderkey>)
Select 'Body' tab, 'raw' tab and enter parameters and value. Click 'Send'.
{
"ProductionOrderStatus": "boposClosed"
}
Below will be displayed if processed successfully.