LaundryAPI
  1. Notifications
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
    • Orders within range time
    • Single Order
    • Create Order
    • Delete order
    • Update Order
  • Branches
    • All Branches
    • Single Branch
    • branch's orders
    • Nearest Branches
    • Create Branch
    • update branch
    • Delete branch
  • Notifications
    • User's Notifications
      GET
    • All Notifications
      GET
    • Create notification
      POST
    • Delete Notification
      DELETE
  • Banners
    • All Banners
    • Create Banner
    • Delete Banners
  • WhatsApp
    • initialize whatsapp Session
  • Settings
    • Set Vat Value
    • get Vat Value
  1. Notifications

All Notifications

GET
http://82.180.154.188:4352/notifications
Last modified:2025-04-13 19:52:07
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://82.180.154.188:4352/notifications'
Response Response Example
{
    "status": "success",
    "results": 1,
    "data": {
        "notifications": [
            {
                "_id": "6893bca0808bb26f1ef71e7b",
                "title": "This is the notification title",
                "message": "This is the notification message",
                "user": {
                    "_id": "68378af89f567a349f209877",
                    "name": "ADMIN",
                    "email": "admin@gmail.com",
                    "phoneNumber": "201000000000",
                    "role": "ADMIN",
                    "phoneVerified": true,
                    "accountStatus": "ACTIVE",
                    "__v": 0,
                    "location": {
                        "type": "Point",
                        "coordinates": [
                            34,
                            23
                        ],
                        "area": "خميس مشيط",
                        "floorNo": "54554"
                    },
                    "fireBaseToken": "wwwww"
                },
                "createdAt": "2025-08-06T20:35:44.219Z",
                "updatedAt": "2025-08-06T20:35:44.219Z",
                "__v": 0
            }
        ]
    }
}

Request

None

Responses

🟢200OK
application/json
Body

Modified at 2025-04-13 19:52:07
Previous
User's Notifications
Next
Create notification
Built with