Delete a shipment belonging to one of your sub-merchants.
Security
bearerAuth or basicAuth
- Mock serverhttps://docs.resolvepay.com/_mock/partners-api/openapi/shipments/{shipment_id}
- Sandbox serverhttps://app-sandbox.resolvepay.com/api/shipments/{shipment_id}
- bearerAuth
- basicAuth
curl -i -X DELETE \
https://docs.resolvepay.com/_mock/partners-api/openapi/shipments/ship_1234567890abcdef \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'An object representing the Shipment.
Method of fulfillment for the shipment.
Enum:"shipping_provider""self_delivery""customer_pickup""services_only"
Example:"shipping_provider"
Tracking number provided by the shipping courier.
Example:"1Z123E45678901234"
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.
Example:"ups"
Manual or automatic verification status of the shipment.
Enum:"verified""pending"
Example:"verified"
Date time when the shipment was last updated.
Example:"2024-01-15T14:45:00Z"
Current tracking status of the shipment from the courier.
Example:"delivered"
Detailed tracking substatus providing additional context about the shipment's current state.
Example:"delivered_001"
Response
{ "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" }