### Example Request (cURL) Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt This snippet shows how to make a GET request to the warehouse-list API using cURL. ```bash curl --location 'https://app.parcelx.in/api/v3/warehouse-list' \ --header 'access-token: YOUR-ACCESS-TOKEN' \ --data '' ``` -------------------------------- ### Warehouse Creation Success Response Example Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt Example success response for warehouse creation. ```JSON { "status": true, "data": { "pick_address_id": 89976 }, "responsemsg": "Warehouse saved successfully." } ``` -------------------------------- ### Warehouse Creation Request Example Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt Example cURL request for creating a warehouse. ```cURL curl --location 'https://app.parcelx.in/api/v3/create_warehouse' \ --header 'access-token: YOUR-ACCESS-TOKEN' \ --data '{ "address_title": "vishal navendu 3", "sender_name": "vishal2", "full_address": "gorakhpur", "phone": "9890999899", "pincode": "273412" }' ``` -------------------------------- ### Example Request (cURL) Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt#intro This snippet shows how to make a GET request to the shipments-details endpoint using cURL. ```curl curl --location 'https://app.parcelx.in/api/v3/shipments-details?awb=344688333' \ --header 'access-token: YOUR-ACCESS-TOKEN' \ --header 'Content-Type: application/json' ``` -------------------------------- ### GET NDR-Shipments Example Response Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt#intro Example JSON response for a successful NDR shipments retrieval. ```json { "status": true, "response": [ { "waybill_number": "76727568934", "channel_order_id": null, "ndr_reason": "COMM FLIGHT,VEH/TRAIN; DELAYED/CANCELLED", "ndr_time": "2026-01-24 05:50:00", "pickup_date": "2026-01-24 05:50:00", "order_date": "2026-01-23 10:13:19", "ofd_time": null }, { "waybill_number": "76727568956", "channel_order_id": null, "ndr_reason": "COMM FLIGHT,VEH/TRAIN; DELAYED/CANCELLED", "ndr_time": "2026-01-24 05:50:00", "pickup_date": "2026-01-24 05:50:00", "order_date": "2026-01-23 10:13:46", "ofd_time": null }, { "waybill_number": "76727568960", "channel_order_id": null, "ndr_reason": "COMM FLIGHT,VEH/TRAIN; DELAYED/CANCELLED", "ndr_time": "2026-01-24 05:50:00", "pickup_date": "2026-01-24 05:50:00", "order_date": "2026-01-23 10:14:47", "ofd_time": null } ] } ``` -------------------------------- ### GET NDR-Shipments Example Request Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt#intro Example cURL request to fetch NDR shipments with specified date ranges and type. ```curl curl --location 'https://app.parcelx.in/api/v3/ndr-shipments?ndr_type=initiated&from_date=2026-01-01&to_date=2026-01-28' \ --header 'access-token: YOUR-ACCESS-TOKEN' \ --header 'Content-Type: application/x-www-form-urlencoded' ``` -------------------------------- ### Remove Warehouse Response Example Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt Example response for removing a warehouse. ```JSON { "status": false, "responsemsg": "Warehouse has been successfully removed" } ``` -------------------------------- ### Example Response (JSON) Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt This snippet shows a successful JSON response from the warehouse-list API, detailing warehouse information. ```json { "status": true, "data": [ { "warehouse_id": "83474", "title": "Test Business", "addressee": "Kamlesh Kumar", "full_address": "8.4 Eco Tower", "phone": "8874940327", "pincode": "201301", "ciity": "Noida", "state": "Uttar Pradesh", "country": "India" }, { "warehouse_id": "87918", "title": "BlueDartBox", "addressee": "Kamlesh Kumar", "full_address": "8.4 noida 125", "phone": "9876543210", "pincode": "201301", "ciity": "Noida", "state": "Uttar Pradesh", "country": "India" }, { "warehouse_id": "88297", "title": "Test BoxD Account", "addressee": "Kamlesh Kumar", "full_address": "B6802 lodha parkside senapati bapat marg Lower parel mumbai", "phone": "8874940327", "pincode": "400013", "ciity": "Mumbai", "state": "Maharashtra", "country": "India" } ] } ``` -------------------------------- ### Example Response (JSON) Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt#intro This snippet shows a successful JSON response from the shipments-details endpoint. ```json { "status": true, "data": { "shipment_id": 12659723, "waybill_number": "344688333", "order_amount": 1000, "added_on": "2025-06-07 16:04:14", "invoice_value": 1000, "invoice_number": "PX12658915", "payment_mode": "PPD", "cod_amount": 0, "express_type": "surface", "consignee_details": { "name": null, "mobile": null, "email": "", "address": { "line1": "153/154 4th Cross", "line2": "", "city": "Delhi", "state": "Delhi", "pincode": "110020" } }, "client_order_id": "0", "status": "227", "products": { "names": [ "Charms Bracelet 3.0" ], "skus": [], "total_quantity": 1 } }, "responsemsg": "Shipment details retrieved successfully" } ``` -------------------------------- ### Remove Warehouse Request Example Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt Example cURL request for removing a warehouse. ```cURL curl --location 'https://app.parcelx.in/api/v3/remove-warehouse' \ --header 'access-token;' \ --data '{ "warehouse_id": "89976" }' ``` -------------------------------- ### Authentication for Parcelx v3 API Source: https://documenter.getpostman.com/view/51980911/2sBXc7KjMt#intro How to generate an access token for authenticating with the Parcelx v3 API. ```bash $access_token= "Access Token" ; $headers = [ "access-token: $access_token", "Content-Type: application/json" ]; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.