Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

/property/id

This action returns an unique identifier for the requested property. In PPW, the unique identifier for a property is the org_property_id.

The org_property_id is required to access the /property/get and /property/update endpoints.

Request

FieldDescriptionRequired
addressStreet number and name of the propertyYes
stateState where the property is locatedYes
cityCity where the property is locatedYes
zipZip where the property is locatedYes
client_companyClient Company of the propertyYes, if it is part of the property definition
loan_numberLoan Number of the propertyYes, if it is part of the property definition

Use the /property/definition API action to determine if client_company and/or loan_number is required.

Example:

{
  "address": "51 Franklin Street",
  "state": "MA",
  "city": "Boston",
  "zip": "02110"
}
curl -H 'Content-Type: application/json' \
     -H 'Authorization: Bearer ACCESS_TOKEN' \
     -d '{"address": "51 Franklin Street", "state": "MA", "city": "Boston", "zip": "02110"}' \
    https://ppw.web/svc/property/id

Response

Example successful response:

{
  "org_property_id": 5666
}

Errors

Error TypeDescriptionStatus Code
address_invalidThe provided property address is invalid400
missing_fieldsThe provided data was missing fields in Custom Property Definition400
not_foundThe requested property does not exist404
access_deniedAccess token is invalid or expired401
scope_invalidClient app does not have the required OAuth scope403