application/json

Body Required

New location parameters

  • A short code entered by the user - optional

  • User who created this location

    Additional properties are allowed.

    Hide createdBy attributes Show createdBy attributes object
  • manager object

    User who who manages this location

    Additional properties are allowed.

    Hide manager attributes Show manager attributes object
  • User to notify when things change on this location

    Additional properties are allowed.

    Hide notifyUserId1 attributes Show notifyUserId1 attributes object
  • User to notify when things change on this location

    Additional properties are allowed.

    Hide notifyUserId2 attributes Show notifyUserId2 attributes object
  • User to notify when things change on this location

    Additional properties are allowed.

    Hide notifyUserId3 attributes Show notifyUserId3 attributes object
  • Group to notify when things change on this location

  • Values are Y or N.

  • Values are Y or N.

  • Additional properties are allowed.

    Hide rateMultiplier attributes Show rateMultiplier attributes object
    • code string

      H: Hour P: Half Day D: Day F: Fixed Price

      Values are H, P, D, or F.

    • decode string
  • The physical address of this location

Responses

  • 200 application/json

    Item has been saved successfully

    Hide response attribute Show response attribute object
  • 401 application/json

    Authentication unauthorised

    Hide response attribute Show response attribute object
  • 403 application/json

    Invalid permission

    Hide response attribute Show response attribute object
POST /location
curl \
 -X POST https://YOURSITE.infoodle.com/apiv2/location \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"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":874344,"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"}'
Request examples
{
  "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": 874344,
    "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"
}
Response examples (200)
{
  "id": 4325342
}
Response examples (401)
{
  "error": "Unauthorised"
}
Response examples (403)
{
  "error": "Invalid Permission"
}