The store_order endpoint allows users to create a new shipping order within our logistics system. This is a critical starting point in the order fulfillment process, where complete information about the shipment must be provided—including sender and receiver details, shipping preferences, product specifications, and payment method.
When a request is made to this endpoint, the system will validate all submitted data to ensure the order can be processed smoothly. Required information includes pickup and delivery addresses, contact information, geolocation points, shipping service selection, and detailed product data such as dimensions, weight, quantity, and price. If the payment method is Cash on Delivery (COD), additional fields like cod_value and service_fee must be accurately calculated and submitted.
This endpoint is designed for merchants or systems that need to integrate automated order creation into their workflows. Once the order is successfully created, it will be stored in the system and made available for courier assignment, tracking, and delivery status updates.
Make sure all required fields are filled in correctly to avoid validation errors. Optional fields like insurance_value or additional_cost can be included based on the specific needs of the order. After submission, a successful response will return the order ID and relevant details that confirm the order has been recorded. Use this endpoint whenever you need to register a new delivery request with complete shipment data.