Coming Soon — This endpoint is under development and will be available at a future date.
This endpoint allows you to submit feedback about the accuracy of a risk assessment response. For example, if you know there are no poison sumac plants in an area where the API indicated a risk, or if you’ve observed bears in an area where the API showed no risk.
Request
Your API key for authentication. Format: Bearer YOUR_API_KEY
Body
The UUID of the risk assessment response you’re providing feedback about. This is returned in the response of the /v1/risks/environmental, /v1/risks/wildlife, or /v1/risks/plants endpoints.
Your feedback about the accuracy of the risk assessment. Explain what risks you believe were incorrectly assessed and why. Include any local knowledge or observations that support your feedback.
Response
Indicates whether the feedback was successfully submitted.
A confirmation message indicating the feedback was received.
Example
Request
curl -X POST "http://api.goes.health/v1/feedback" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"responseId": "123e4567-e89b-12d3-a456-426614174000",
"feedback": "I am a local park ranger and can confirm there is no poison sumac in this area. The nearest occurrence is over 50 miles away in a different ecosystem."
}'
Response
{
"success": true,
"message": "Thank you for your feedback."
}
Your API key for authentication.
The UUID of the risk assessment response you're providing feedback about
Your feedback about the accuracy of the risk assessment, including any local knowledge or observations that support your feedback
Example:"I am a local park ranger and can confirm there is no poison sumac in this area. The nearest occurrence is over 50 miles away in a different ecosystem."
Feedback submitted successfully
Example:"Thank you for your feedback."