OpenApi
    • Branches
      • List active branches
        GET
      • Get a branch's service tree
        GET
    • Services
      • Get available appointment slots
        GET
    • Tickets
      • Book a ticket (walk-in or appointment)
        POST
      • Fetch a ticket
        GET
      • Cancel a ticket
        POST
      • Reschedule an appointment
        POST
    • Customers
      • Create a customer
        POST
      • List customers (paginated)
        GET
      • Fetch one customer
        GET
      • Update a customer
        PUT
      • Delete a customer
        DELETE
      • List a customer's tickets
        GET
    • Schemas
      • SuccessEnvelope
      • PaginatedEnvelope
      • ErrorEnvelope
      • ValidationErrorEnvelope
      • AuthErrorEnvelope
      • Pagination
      • Branch
      • BranchTreeGroup
      • Service
      • Slot
      • Ticket
      • Customer
      • CustomerWriteRequest
      • CustomerUpdateRequest
      • BookTicketRequest
      • ChangeTimeRequest

    Branch

    An active branch with its live open status.

    {
        "id": "802b33af66",
        "name": "Seef Mall Branch",
        "addressLine": "Seef District, Manama, Bahrain",
        "location": {
            "lat": 26.2361,
            "lng": 50.5436
        },
        "group": {
            "id": "grpseef0001",
            "name": "Capital Region"
        },
        "branchStatus": {
            "isBranchOpen": true
        }
    }
    Built with