LaundryAPI
  1. Orders
LaundryAPI
  • Authentication
    • Signup
      POST
    • Resend Verification Code
      POST
    • Verify phone number
      POST
    • Login
      POST
    • Refresh Token
      GET
    • Forgot Password
      POST
    • Reset Password
      PATCH
    • Update Password
      PATCH
    • Logout
      POST
  • Users
    • Get Me
      GET
    • Update Me
      PATCH
    • Delete Me
      DELETE
    • Get All Users
      GET
    • Update User
      PATCH
    • Delete User
      DELETE
    • Create Delivery
      POST
    • Create Admin
      POST
  • Items
    • Get all items
      GET
    • Get Single item
      GET
    • Create item
      POST
    • Update item
      PATCH
    • Delete item
      DELETE
  • Orders
    • Get all orders
      GET
    • Orders within range time
      GET
    • Single Order
      GET
    • Create Order
      POST
    • Delete order
      DELETE
    • Update Order
      PATCH
  • Branches
    • All Branches
    • Single Branch
    • branch's orders
    • Nearest Branches
    • Create Branch
    • update branch
    • Delete branch
  • Notifications
    • User's Notifications
    • All Notifications
    • Create notification
    • Delete Notification
  • Banners
    • All Banners
    • Create Banner
    • Delete Banners
  • WhatsApp
    • initialize whatsapp Session
  • Settings
    • Set Vat Value
    • get Vat Value
  1. Orders

Single Order

GET
http://82.180.154.188:4352/orders/688f4383e8b042a9d9ef7b2a
Last modified:2025-08-03 11:11:53
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://82.180.154.188:4352/orders/688f4383e8b042a9d9ef7b2a' \
--header 'Authorization: Bearer '
Response Response Example
{
    "status": "success",
    "data": {
        "order": {
            "_id": "688f4383e8b042a9d9ef7b2a",
            "user": {
                "_id": "68378af89f567a349f209877",
                "name": "ADMIN",
                "email": "admin@gmail.com",
                "phoneNumber": "201000000000",
                "location": {
                    "type": "Point",
                    "coordinates": [
                        34,
                        23
                    ],
                    "area": "خميس مشيط",
                    "floorNo": "54554"
                },
                "fireBaseToken": "wwwww"
            },
            "branch": {
                "_id": "68252ebc35681134c64c0a28",
                "name": "juddah Branch",
                "location": {
                    "type": "Point",
                    "coordinates": [
                        30.111111,
                        30.111112
                    ],
                    "area": "juddah"
                },
                "workingDays": [
                    {
                        "day": "Saturday",
                        "isActive": true,
                        "timeRanges": [
                            {
                                "from": "08:00",
                                "to": "12:00"
                            },
                            {
                                "from": "16:00",
                                "to": "20:00"
                            }
                        ]
                    },
                    {
                        "day": "Sunday",
                        "isActive": false,
                        "timeRanges": []
                    }
                ]
            },
            "pickUpDateFrom": "2025-04-11T14:00:00.000Z",
            "pickUpDateTo": "2025-04-11T16:00:00.000Z",
            "deliveryDateFrom": "2025-04-12T14:00:00.000Z",
            "deliveryDateTo": "2025-04-12T16:00:00.000Z",
            "status": "WAITINGFORPICKUP",
            "priceOfPackage": 30,
            "VAT": 20,
            "discount": 0,
            "itemsType": "clothes",
            "items": [],
            "createdAt": "2025-08-03T11:09:55.015Z",
            "updatedAt": "2025-08-03T11:09:55.015Z",
            "__v": 0
        }
    }
}

Request

Header Params

Responses

🟢200OK
application/json
Body

Modified at 2025-08-03 11:11:53
Previous
Orders within range time
Next
Create Order
Built with