Skip to main content
PATCH
/
v2
/
search
/
matches
/
{match_id}
Update Potential Match Status
curl --request PATCH \
  --url https://api.gominerva.com/v2/search/matches/{match_id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "review_status": "false_positive"
}
'
{
  "match": {
    "id": "665f1c2b16f5adbb8e1d3f41",
    "review_status": "false_positive"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.gominerva.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

The Minerva API key used for this integration. Manage API keys in the Minerva dashboard under Administration > Developers.

Path Parameters

match_id
string
required

Potential match ID returned by Minerva search results.

Body

application/json

Potential match status update request

Request body for updating the review status of a potential match returned by a search.

review_status
enum<string>
required

New review status for the potential match.

Available options:
unresolved,
true_positive,
false_positive,
suppressed,
closed,
reopened
Example:

"false_positive"

Response

200 - application/json

Potential match status updated successfully

match
object