Skip to main content
PATCH
endpoint
/api/v1/logs/:id
Modify an existing log entry in Forerunner. Geospatial fields (address, parcelId, coordinates) cannot be modified after creation.

Path Parameters

id
string
required
The unique identifier of the log entry to update

Body Parameters

All fields from Submit Log are accepted, except for the geospatial fields, but all are optional.

Response

log
object
errors
array
Array of error objects. See Errors.
curl -X PATCH https://app.withforerunner.com/api/v1/logs/f8a3b2c1-d4e5-6789-abcd-ef0123456789 \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "status": "complete",
    "discussion": {
      "internalNotes": "Follow-up: Property owner submitted EC and case is now closed."
    }
  }'
{
  "log": {
    "id": "f8a3b2c1-d4e5-6789-abcd-ef0123456789"
  },
  "errors": []
}