I'm trying to use Postman and replicate the following POST request from this link:
https://www.msc.com/en/track-a-shipment?params=dHJhY2tpbmdOdW1iZXI9YXNkYSZ0cmFja2luZ01vZGU9MA%3D%3D
The payload necessary to get a response from this API is something like:
{trackingNumber: "asda", trackingMode: "0"}
With the following payload, I expect to receive the following response:
{IsSuccess: false, Data: "Container not found"}
Here, you can see my Postman request:
All I seem to get from this is an empty string, which is not the same result I would see If I checked my Network tab from developer tools.
I'm wondering what do I need to do in order to get the same result. Change headers? Change payload format? What else could it be?




