Shipments - `test_mode` deprecated
· One min read
Since we have introduced Sandbox enviroment, we have decided to deprecated test_mode on the POST /shipments endpoint.
The date of removal of test_mode is yet unknown, but we highly encourage you to stop using this parameter and use the Sandbox enviroment instead.
Example
Before
POST https://app.shipmondo.com/api/public/v3/shipments
{
"test_mode": true,
"product_code": "PN_MC",
...
}
After
POST https://sandbox.shipmondo.com/api/public/v3/shipments
{
"product_code": "PN_MC",
...
}