Muvx Order Management Postman
The Muvx Postman Collection provides everything you need to start testing and integrating with the Muvx API.
It includes ready-made requests for order management (create, cancel, trigger pickup, get status) and a preconfigured environment for variables like base URL and API key.
Downloads
Use these files to quickly set up Postman and start testing the Muvx API:
Online Postman Documentation
You can also explore the live Postman docs here:
Setup Instructions
You have two options to configure the environment:
Option A — Import the Environment (Recommended)
- Open Postman → Environments → Import
- Upload the file
Muvx Env.postman_environment.json - Activate the environment named Muvx Env from the dropdown in the top-right
Environment variables included:
muvx_base_url→ API base URL (https://core.muvx.ai)sample_api_key→ Replace this with your own API keysample_order_id→ First create an order using the API, then use its ID here
- Always replace the
sample_api_keyvalue with your actual API key. - To set
sample_order_id, first use the Create Order API, then copy the returnedidinto this variable.
Option B — Create the Environment Manually
If you don’t want to use the file, you can manually create the environment:
- Open Postman → Environments → Add New
- Add the following variables and values:
| Key | Value | Type |
|---|---|---|
muvx_base_url | https://core.muvx.ai | Default |
sample_api_key | Your real API key here | Secret |
sample_order_id | Example order ID | Default |
- Save the environment.
- Select it from the environment dropdown in the top-right.
Only one environment can be active at a time. All
{{variables}}in the collection will be resolved from the selected environment.
2. Import the Collection
- Open Postman → Collections → Import.
- Upload the file
Muvx.postman_collection.json. - You’ll see the Muvx collection with all requests ready.
Authentication
This collection uses Bearer Token authentication:
- The token is set at the collection level.
- All requests automatically use
{{sample_api_key}}from your active environment. - You don’t need to edit headers manually.
Using the Collection
With the environment and collection active, you can immediately start testing:
- Create Order → Register a new order in Muvx
- Trigger Pickup → Dispatch an order to delivery
- Get Order Status → Track status updates
- Cancel Order → Cancel an existing order
For full API details, see the Order Management documentation.
