Skip to content

Delete Order by ID

Request

This operation performs a soft delete of an order identified by orderId. The order is marked as deleted and is no longer available for processing or fulfillment

Security
bearerAuth
Path
orderIdstringrequired

Unique identifier for the order

curl -i -X DELETE \
  'https://api-sandbox.sendpro360.pitneybowes.com/ordermanagement/api/v1/orders/{orderId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

The specified order has been deleted successfully.

Bodyapplication/json
orderIdstring

Unique system-generated identifier of the deleted order.

Example:"PBM75CRknylo"
statusstring

Current status of the order.

Example:"Deleted"
transactionDateTimestring, (date-time)

Timestamp when the delete operation was executed.

Example:"2026-01-01T09:27:36.775Z"
Response
{ "orderId": "PBM75CRknylo", "status": "Deleted", "transactionDateTime": "2026-01-01T09:27:36.775Z" }