Skip to main content
PATCH
endpoint
/api/v1/sisd/:id
Update an existing SI/SD record.

Path Parameters

id
string
required
The UUID of the SI/SD record to update

Body Parameters

All fields are optional, but at least one must be provided. Geospatial fields (address, coordinates, parcelId) and externalSystemId are not accepted on updates. If you need to change these, delete and resubmit the record.
type
string
Type of record: improvement or damage
value
number
Dollar amount of the improvement or damage
date
string
Date of the improvement or damage. Accepts ISO 8601 format (e.g., 2024-03-15) or MM/DD/YYYY format.
description
string | null
Description providing context about the improvement or damage. Set to null to clear.
propertyMarketValue
number
Market value of the property before the improvement or damage
Account-specific unique identifiers (e.g., permitId) may be included as additional parameters depending on your community configuration.

Response

sisd
object
The updated SI/SD record
property
object
Property information and warnings
errors
array
Array of error objects. When non-empty, the sisd object is absent. See Errors.
curl -X PATCH https://app.withforerunner.com/api/v1/sisd/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "value": 135000,
    "description": "Updated damage assessment after full inspection"
  }'
{
  "sisd": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  },
  "property": {
    "warnings": [
      {
        "message": "The damage costs recorded for this property meet or exceed your community's Substantial Damage threshold. Further action might be necessary to ensure compliance."
      }
    ]
  },
  "errors": []
}