curl --request POST \
--url https://api.gominerva.com/clm/v1/profiles/{profileId}/comments \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41"
}
'import requests
url = "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments"
payload = {
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
text: 'Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.',
kind: 'profile',
matchId: '665f1c2b16f5adbb8e1d3f41'
})
};
fetch('https://api.gominerva.com/clm/v1/profiles/{profileId}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'text' => 'Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.',
'kind' => 'profile',
'matchId' => '665f1c2b16f5adbb8e1d3f41'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments"
payload := strings.NewReader("{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.gominerva.com/clm/v1/profiles/{profileId}/comments")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gominerva.com/clm/v1/profiles/{profileId}/comments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}"
response = http.request(request)
puts response.read_body{
"msg": "OK",
"result": {
"comment": {
"_v": 1,
"id": "66c391b92888a0db5cc6d3f7",
"createdAt": "2026-05-22T15:30:00Z",
"updatedAt": "2026-05-22T15:30:00Z",
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41",
"profileId": "66c391b92888a0db5cc6d3f6",
"createdBy": "core-user-id",
"updatedBy": "core-user-id"
}
},
"status": 201
}Add Profile Comment
Adds a comment to a screening profile. Comments are useful for recording analyst rationale, follow-up notes, and review context alongside the profile record.
Supported kind values:
profile: a general note on the profile.match: a note associated with a potential match. IncludematchIdwhen available.
curl --request POST \
--url https://api.gominerva.com/clm/v1/profiles/{profileId}/comments \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41"
}
'import requests
url = "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments"
payload = {
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41"
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
text: 'Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.',
kind: 'profile',
matchId: '665f1c2b16f5adbb8e1d3f41'
})
};
fetch('https://api.gominerva.com/clm/v1/profiles/{profileId}/comments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'text' => 'Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.',
'kind' => 'profile',
'matchId' => '665f1c2b16f5adbb8e1d3f41'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.gominerva.com/clm/v1/profiles/{profileId}/comments"
payload := strings.NewReader("{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.gominerva.com/clm/v1/profiles/{profileId}/comments")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gominerva.com/clm/v1/profiles/{profileId}/comments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"text\": \"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.\",\n \"kind\": \"profile\",\n \"matchId\": \"665f1c2b16f5adbb8e1d3f41\"\n}"
response = http.request(request)
puts response.read_body{
"msg": "OK",
"result": {
"comment": {
"_v": 1,
"id": "66c391b92888a0db5cc6d3f7",
"createdAt": "2026-05-22T15:30:00Z",
"updatedAt": "2026-05-22T15:30:00Z",
"text": "Reviewed the sanctions hit and determined it is a false match because the date of birth does not align.",
"kind": "profile",
"matchId": "665f1c2b16f5adbb8e1d3f41",
"profileId": "66c391b92888a0db5cc6d3f6",
"createdBy": "core-user-id",
"updatedBy": "core-user-id"
}
},
"status": 201
}Authorizations
The Minerva API key used for this integration. Manage API keys in the Minerva dashboard under Administration > Developers.
Path Parameters
Profile ID that should receive the comment.
Body
Profile comment creation request
Request body for adding an analyst comment to a profile. Use kind to indicate whether the note is profile-level or tied to a potential match.
Comment text. Must be a non-empty string.
"Reviewed the sanctions hit and determined it is a false match because the date of birth does not align."
Comment category. Use profile for a general profile note or match for a potential match note.
profile, match "profile"
Optional potential match ID to associate with the comment when kind is match.
"665f1c2b16f5adbb8e1d3f41"