List available locations

GET /location/list

Get a list of all the locations available, used in events or finance

Responses

GET /location/list
curl \
 -X GET https://YOURSITE.infoodle.com/apiv2/location/list \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "locationId": 1,
    "shortCode": "AU3",
    "createdBy": {
      "userid": 779,
      "showname": "John Smith"
    },
    "manager": {
      "userid": 144274,
      "showname": "Jane Smith"
    },
    "notifyUserId1": {
      "userid": 210000,
      "showname": "Jamine Khan"
    },
    "notifyUserId2": {
      "userid": 874371,
      "showname": "George Best"
    },
    "notifyUserId3": {
      "userid": 874371,
      "showname": "Arthur Dent"
    },
    "notifyGroup": 636,
    "informManagerEachUse": "Y",
    "availableForExternalBookings": "Y",
    "externalRate": 3.45,
    "internalRate": 1.33,
    "rateMultiplier": {
      "code": "P",
      "decode": "Per Half Day"
    },
    "publicAddress": "1 High Street, High Wycome, W1A 1AA"
  }
]