Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Get the list of all the properties.

Endpoint: https://ws.icnea.net/pricing_get_properties.aspx?usr=a1b2c3d4e5&own=1234

Parameter

Type

Description

usr

string

API_key for your company, provided by Icnea.

own

integer

Property Manager ID

The response will be a JSON with the lodging_id list:

Code Block
languagejson
{
  "pricing_get_properties_response": {
    "lodgings": [
      {
        "lodging_id": "12341001"
      }, {
        "lodging_id": "12341002"
      }, {
        "lodging_id": "12341003"
      }, {
        "lodging_id": "12341009"
      }
    ]
  }
}

...