Modify an existing log entry in Forerunner. Geospatial fields (address, parcelId, coordinates) cannot be modified after creation.
Path Parameters
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
UUID uniquely identifying the log
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": []
}