The UJAccommodations API

Documentation

GETaccommodations

sample query:
https://ujaccommodations.000webhostapp.com/
response :
[
    {
        "key": "1",
        "propertyDetails": {
            "PropertyName": "17 ON PUTNEY",
            "Campus": "APK",
            "CapacityApproved": "10",
            "Address": "17 Putney Road, Rossmore,ERF 213 Johannesburg, 2021"
        },
        "contactDetails": {
            "ContactName": "Fatima Moosa",
            "ContactEmail": "fatimamoosa91@gmail.com",
            "ContactNumber": "0845848333"
        }
    },
    {
        "key": "2",
        "propertyDetails": {
            "PropertyName": "17 ON PUTNEY",
            "Campus": "APK",
            "CapacityApproved": "8",
            "Address": "107 St Swithins Avenue, Auckland Park, ERF 688 Johannesburg, 2092"
        },
        "contactDetails": {
            "ContactName": "Fatima Moosa",
            "ContactEmail": "fatimamoosa91@gmail.com",
            "ContactNumber": "0845848333"
        }
    }
]

GETaddresses

sample query:
https://ujaccommodations.000webhostapp.com/addresses
response :
[
    {
        "key": "1",
        "PropertyName": "17 ON PUTNEY",
        "Campus": "APK",
        "CapacityApproved": "10",
        "Address": "17 Putney Road, Rossmore,ERF 213 Johannesburg, 2021"
    },
    {
        "key": "2",
        "PropertyName": "17 ON PUTNEY",
        "Campus": "APK",
        "CapacityApproved": "8",
        "Address": "107 St Swithins Avenue, Auckland Park, ERF 688 Johannesburg, 2092"
    }
]

GETcontacts

sample query:
https://ujaccommodations.000webhostapp.com/contacts
response :
[
    {
        "key": "1",
        "ContactName": "Fatima Moosa",
        "ContactEmail": "fatimamoosa91@gmail.com",
        "ContactNumber": "0845848333"
    },
    {
        "key": "2",
        "ContactName": "Fatima Moosa",
        "ContactEmail": "fatimamoosa91@gmail.com",
        "ContactNumber": "0845848333"
    }
]

GETproperty name

sample query:
https://ujaccommodations.000webhostapp.com/accommodationbypropertyname?PropertyName=17%20ON%20PUTNEY
response :
{
    "key": "1",
    "ContactName": "Fatima Moosa",
    "ContactEmail": "fatimamoosa91@gmail.com",
    "PropertyName": "17 ON PUTNEY",
    "Campus": "APK",
    "CapacityApproved": "10",
    "Address": "17 Putney Road, Rossmore,ERF 213 Johannesburg, 2021"
}

GETlocation

sample query:
https://ujaccommodations.000webhostapp.com/accommodationbyaddress?address=17%20Putney%20Road,%20Rossmore,ERF%20213%20Johannesburg,%202021
response :
{
    "key": "1",
    "ContactName": "Fatima Moosa",
    "ContactEmail": "fatimamoosa91@gmail.com",
    "PropertyName": "17 ON PUTNEY",
    "Campus": "APK",
    "CapacityApproved": "10",
    "Address": "17 Putney Road, Rossmore,ERF 213 Johannesburg, 2021"
}

GETkey

sample query:
https://ujaccommodations.000webhostapp.com/accommodationbykey?key=1
response :
{
          "key": "1",
          "ContactName": "Fatima Moosa",
          "ContactEmail": "fatimamoosa91@gmail.com",
          "PropertyName": "17 ON PUTNEY",
          "Campus": "APK",
          "CapacityApproved": "10",
          "Address": "17 Putney Road, Rossmore,ERF 213 Johannesburg, 2021"
}