SavvyIQ
2026-03-11

Entity resolution

Submit feedback about an entity resolution response

POST /v1/entity-resolution/report

Help us improve our entity resolution service by providing feedback about the results.

Request body

  • request_idstring required
    The request ID from the original API response
  • reasonstring (enum)
    incorrectincompleteoutdatedother
    The reason for negative feedback
  • commentsstring
    Additional comments about the feedback

Responses

200 Feedback submitted successfully
  • statusstring (enum)
    ok
    Status of the feedback submission
400 Bad Request
  • errorobject
    An error object.
    Show 2 nested fieldsHide nested fields
    • messagestring
      The error message
    • typestring
      The error code
401 Unauthorized
  • messagestring
    The error object.
  • request_idstring
    The request ID for the error.
404 Request ID not found
  • messagestring
  • codestring
500 Internal Server Error
  • errorobject
    An error object.
    Show 2 nested fieldsHide nested fields
    • messagestring
      The error message
    • typestring
      The error code

Example request

cURL
curl --request POST \
  --url 'https://api.savvyiq.ai/v1/entity-resolution/report' \
  --header 'apikey: YOUR_API_KEY' \
  --header 'content-type: application/json' \
  --data '{"request_id":"reqa_e3e81875-6be0-4f11-a4b9-d9564d08391c","reason":"outdated","comments":"The primary address is outdated"}'

Example response

Example200
{
  "status": "ok"
}