Create a new public assistance log entry in Forerunner.
Body Parameters
Type of interaction. Valid values:
web
walk_in
phone
written_or_email_request
Date of the interaction in MM/DD/YYYY format (e.g., 03/20/2024)
Current status of the log entry: open, complete, or in_progress
Information about the person making the inquiryShow contactInformation properties
Details about the interactionShow discussion properties
Whether a site visit occurred
How insurance information was provided: "verbally", "handout", or "email"
propertyProtectionAdviceGiven
Whether property protection advice was given
Whether financial advice was given
Description of what the contact requested help with
Internal notes about the interaction
Street address related to the inquiry
Parcel ID related to the inquiry
Two-element array [latitude, longitude] in EPSG:4326 format
At least one of address, parcelId, or coordinates is required for Forerunner to properly geolocate the log.
Response
UUID uniquely identifying the log
Array of error objects. See Errors.
curl -X POST https://app.withforerunner.com/api/v1/logs \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"type": "phone",
"date": "03/20/2024",
"status": "complete",
"contactInformation": {
"name": "Jane Doe",
"phone": "(555) 987-6543",
"email": "jane.doe@example.com"
},
"discussion": {
"siteVisit": false,
"insuranceInfoGiven": "verbally",
"requestedHelpWith": "Flood zone status inquiry",
"internalNotes": "Provided information about flood zone AE designation and explained EC submission process."
},
"address": "456 Oak Ave, Springfield, IL"
}'
{
"log": {
"id": "f8a3b2c1-d4e5-6789-abcd-ef0123456789"
},
"errors": []
}