Skip to main content

Hello All,

I am in the process of attempting to pull the contents of Screen IN405000 via a postman request.

We have other successful requests coming through our Web Service Endpoints setup, so i am not immediately concerned about our configuration at this time.

We created a new endpoint, with a base endpoint version of 18.200.001, and created a new route, “InventoryHistory” viewable here in screenshot 1.

We then went to request it in screenshot 2, but we receive nothing in response. 

Any insight into what we have done incorrectly would be very helpful,

Chris


Screenshot 1


Screenshot 2
 

 

Hey @jinin 

That did the trick! Thanks for taking the time to address this!

Happy Holidays,

Chris


Hi @ChrisHaddy ,

We need to use the PUT method for Inquiry screens.

The endpoint entity should create like the below screenshots,

 


 

 


Please find the endpoint sample,

Url - entity/test/20.200.001/InventoryHistory?$expand=Results

Method - PUT

Request

{

    "InventoryID": {

        "value": "AACOMPUT01"

    },

    "Warehouse": {

        "value": "WHOLESALE"

    },

     "StartDate": {

        "value": "12/01/2019"

    }

}


Reply