Skip to content

Delete Order Item

Request

Deletes a specific item from an order using its SKU. This operation is used when an item is removed before fulfillment due to order changes or corrections.

Security
bearerAuth
Path
orderIdstringrequired

Unique identifier for the order

Query
itemIdstringrequired

SKU of the item to be deleted.

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

Responses

Item deleted successfully

Bodyapplication/json
orderIdstring

Unique identifier of the order that was updated.

Example:"PBksT3ctKT9M"
statusstring

Status of the order after the item was deleted.

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

Timestamp when the deletion was processed.

Example:"2025-07-01T17:52:17.889Z"
Response
{ "orderId": "PBksT3ctKT9M", "status": "Updated", "transactionDateTime": "2025-07-01T17:52:17.889Z" }