POST - Shipment Notes
The ShipmentNotes Service comprises a JSON Object that allows users to add notes to any given shipment.
The following guides below help you create (POST) a note to any given shipment.
The POST notes Endpoint allows the uploading of notes to a specific shipment in the 10-4 Freight Portal.
The POST notes Endpoint has multiple parameter values that can be included in the object. As a base level requirement, the following parameters are required in order to successfully create a note for uploading:
1. FreightProviderReferenceNumber or TenFourLicensePlate
2. Text
3. isShared
4. SMSDriver
The CREATE HTTP Endpoint for shipment tracking is listed below:
HTTP Verb: POST
URI: /atlas/frexapi/shipment/notes/
Authentication: Validation Through Request Parameters
Success Response:
{
"TenFourLicensePlate" : "{{TFLP}}",
"FreightProviderReferenceNumber": "{{ShipmentID}}",
"Text": "Your Note here",
"isShared": true,
"SMSDriver": true
}
Updated about 2 months ago
What’s Next