LaundryAPI
  1. Branches
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
    • Single Order
    • Create Order
    • Delete order
    • Update Order
  • Branches
    • All Branches
      GET
    • Single Branch
      GET
    • branch's orders
      GET
    • Nearest Branches
      GET
    • Create Branch
      POST
    • update branch
      PATCH
    • Delete branch
      DELETE
  • Notifications
    • All Notifications
    • Create notification
    • Delete Notification
  • Banners
    • All Banners
    • Create Banner
    • Delete Banners
  • WhatsApp
    • initialize whatsapp Session
  1. Branches

Single Branch

GET
http://82.180.154.188:4352/branches/67fa3a3027988335ae1d626c
Last modified:2025-04-12 11:11:43
This end point retrieves a single branch
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://82.180.154.188:4352/branches/67fa3a3027988335ae1d626c'
Response Response Example
{"status":"success","data":{"branch":{"_id":"67fa3a3027988335ae1d626c","name":"Updated the name of the branch","location":{"type":"Point","coordinates":[37.7749,-122.4194],"area":"Downtown"},"workingDays":[{"day":"Saturday","isActive":true,"timeRanges":[{"from":"08:00","to":"12:00"},{"from":"16:00","to":"20:00"}]},{"day":"Sunday","isActive":false,"timeRanges":[]}],"createdAt":"2025-04-12T10:02:24.766Z","updatedAt":"2025-04-12T10:09:43.412Z","__v":0}}}

Request

None

Responses

🟢200OK
application/json
Body
status
string 
required
data
object 
required
branch
object 
required
Previous
All Branches
Next
branch's orders
Built with