Synchronizes shipment tracking information by fetching real-time data from the courier using the existing tracking number. This endpoint retrieves the latest tracking updates directly from the shipping provider and performs instant verification of the shipment status, ensuring that the shipment data is current and accurate.
- Mock serverhttps://docs.resolvepay.com/_mock/partners-api/openapi/shipments/{shipment_id}/sync
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/shipments/{shipment_id}/sync
- bearerAuth
- basicAuth
curl -i -X POST \
https://docs.resolvepay.com/_mock/partners-api/openapi/shipments/ship_1234567890abcdef/sync \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'An object representing the Shipment.
Method of fulfillment for the shipment.
Tracking number provided by the shipping courier.
Shipping courier or provider name. While any value can be accepted, instant verification is supported for specific couriers.
See the Shipments API documentation for the complete list of supported couriers.
Manual or automatic verification status of the shipment.
Date time when the shipment was last updated.
Current tracking status of the shipment from the courier.
Detailed tracking substatus providing additional context about the shipment's current state.
{ "id": "ship_1234567890abcdef", "merchant_invoice_id": "inv_1234567890abcdef", "fulfillment_method": "shipping_provider", "shipment_tracking_number": "1Z123E45678901234", "shipment_courier": "ups", "verification_status": "verified", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T14:45:00Z", "tracking_status": "delivered", "tracking_substatus": "delivered_001", "expected_delivery": "2024-01-20T18:00:00Z" }