# Order ## Create Order - [POST /createOrder](https://developers.drayeasy.com/dray/order/createorder.md): This endpoint is used to create new orders with detailed information about the shipment, including container details, delivery information, contact emails, and more. ## Get Orders - [GET /orders](https://developers.drayeasy.com/dray/order/searchorders.md): Method: GET URI: /orders ## Upload Files to Order - [POST /orders/{orderId}/files](https://developers.drayeasy.com/dray/order/uploadfilestoorder.md): This endpoint allows you to upload files or provide URLs associated with a specific order. The request should include either an array of files (file_list) or an array of URLs (urls). ## Get Order Files - [GET /orders/{orderId}/files](https://developers.drayeasy.com/dray/order/getorderfiles.md): This endpoint allows you to retrieve files that are associated with a particular order identified by orderId. It's useful for fetching documents, images, or any other files related to the order for viewing or downloading purposes. ## Download Order File - [GET /orders/{orderId}/files/{fileId}](https://developers.drayeasy.com/dray/order/downloadorderfile.md): This endpoint is used to download a specific file associated with an order. By providing the orderId and fileId, you can retrieve and download the file. This functionality is useful for accessing documents, images, or any other files related to a particular order. ## Delete Order File - [DELETE /orders/{orderId}/files/{fileId}](https://developers.drayeasy.com/dray/order/deleteorderfile.md): This endpoint allows you to delete a specific file associated with an order. By providing the orderId and fileId, you can remove the file from the order's files collection. This action is irreversible, so use it with caution as it permanently deletes the specified file.