POST
/
v1
/
feedback
cURL
curl --request POST \
  --url https://api.goes.health/v1/feedback \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "responseId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "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."
}'
{
  "success": true,
  "message": "Thank you for your feedback."
}
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

Headers

Authorization
string
required
Your API key for authentication. Format: Bearer YOUR_API_KEY

Body

responseId
string
required
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.
feedback
string
required
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

success
boolean
Indicates whether the feedback was successfully submitted.
message
string
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."
}

Headers

Authorization
string
required

Your API key for authentication.

Body

application/json

Response

200
application/json

Feedback submitted successfully

The response is of type object.