Navigate WMS
  1. Orders
Navigate WMS
  • Navigate WMS
    • Introduction
  • Authentication
    • Authentication API
    • Authenticate User
      POST
  • Locations
    • Locations API
    • Get Locations
      GET
    • Add Location
      POST
    • Update Location
      PUT
    • Get Prep Locations
      GET
  • Product Catalog
    • Product Catalog API
    • Get Products
      POST
    • Add Product
      PUT
    • Get Product Details
      GET
    • Update Product
      PUT
    • Activate/Deactivate Product
      PATCH
    • Get Bundles
      POST
    • Add Bundle
      PUT
    • Get Bundle Details
      GET
    • Update Bundle
      PUT
    • Activate/Deactivate Bundle
      PATCH
    • Get Supplies
      POST
    • Add Supply
      PUT
    • Get Supply Details
      GET
    • Update Supply
      PUT
    • Activate/Deactivate Supply
      PATCH
    • Get Items
      POST
  • Inventory
    • Inventory API
    • Get Inventory
    • Get Inventory Details
  • Orders
    • Get Inbound Orders
      POST
    • Create Inbound Order
      PUT
    • Get Inbound Order Details
      GET
    • Update Inbound Order
      PUT
    • Cancel Inbound Order
      DELETE
    • Get Prep Orders
      POST
    • Create Prep Order
      PUT
    • Get Prep Order Details
      GET
    • Update Prep Order
      PUT
    • Cancel Prep Order
      DELETE
    • Get Manual Orders
      POST
    • Create Manual Order
      PUT
    • Get Manual Order Details
      GET
    • Update Manual Order
      PUT
    • Cancel Manual Order
      DELETE
  • Miscellaneous
    • Get Package Types
    • Get Prep Services
  1. Orders

Cancel Manual Order

Sandbox
https://sandbox.trynavigate.co/api/v1
Sandbox
https://sandbox.trynavigate.co/api/v1
DELETE
/manual
Use this endpoint to cancel an existing manual order that
has not been picked up for fulfillment yet.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Success.
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://sandbox.trynavigate.co/api/v1/manual' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "id": 202508969065,
    "reason": "Invalid product details."
}'
Response Response Example
200 - Example 1
{
    "status": 200,
    "message": "Success.",
    "payload": {
        "message": "Work Order cancelled successfully."
    }
}
Modified at 2025-11-20 12:06:10
Previous
Update Manual Order
Next
Get Package Types
Built with