# Register tracking status It allows to update the tracking status of an active tranportation Endpoint: POST /shipping_trackings Version: 1.4.2 Security: bearerAuth ## Request fields (application/json): - `shopCode` (string) Shop code which belongs the shipment. In case this field is not informed, it will be obtained from security context. In case it is informed, it will be validated against the security context. This field is mandatory in case the token is associated with two or more merchants Example: "marchelacolombine" - `shipmentId` (string, required) ID of the shipment. The ID must exist in the platform. API will use this value to search the shipment whose status will be updated. Example: "R1-64231" - `shipmentIdType` (string, required) Type of ID that is being reported * RETURN_NAME - Name of the return. The last active shipment/transport will be searched. This value is generated by iF at the moment the return request is created. It has the format R#-{ORDER_NAME} (R1-64231) Enum: "RETURN_NAME" - `carrierName` (string) Carrier responsible for the shipment Example: "UPS" - `trackingNumber` (string) Tracking number for the shipping Example: "1Z4E61W19106005862" - `trackingUrl` (string) Tracking URL for the shipping Example: "https://www.ups.com/tracknum=1Z4E61W19106005862" - `trackingStatus` (string, required) Status of the shipment/transport Enum: "REQUESTED", "PICK_UP_IN_PROGRESS", "PICK_UP_COMPLETED", "SHIPPING_IN_PROGRESS", "SHIPPING_COMPLETED", "PICK_UP_FAILED", "PICK_UP_CANCELLED", "SHIPPING_FAILED", "SHIPPING_CANCELLED" - `trackingStatusDescription` (string) Description of the status description Example: "Package assigned to the driver" - `trackingDate` (string) Date of the tracking event. In case is not present, the current date will be used Example: "2011-08-12T20:17:46Z" ## Response 200 fields (application/json): - `statusCode` (string) Example: "200" - `description` (string) Example: "Your tracking have been registered correctly" ## Response 400 fields ## Response 401 fields ## Response 404 fields ## Response 405 fields ## Response 500 fields