Mark name screen hits
curl --request POST \
--url http://localhost/api/api/namescreenhits/mark-as \
--cookie sessionid=import requests
url = "http://localhost/api/api/namescreenhits/mark-as"
headers = {"cookie": "sessionid="}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {cookie: 'sessionid='}};
fetch('http://localhost/api/api/namescreenhits/mark-as', 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 => "http://localhost/api/api/namescreenhits/mark-as",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_COOKIE => "sessionid=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost/api/api/namescreenhits/mark-as"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("cookie", "sessionid=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost/api/api/namescreenhits/mark-as")
.header("cookie", "sessionid=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/api/api/namescreenhits/mark-as")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["cookie"] = 'sessionid='
response = http.request(request)
puts response.read_bodyStep 7 - Review Hits
Mark Hits
Selectively assess specific screening hits by their IDs.
POST
/
api
/
namescreenhits
/
mark-as
Mark name screen hits
curl --request POST \
--url http://localhost/api/api/namescreenhits/mark-as \
--cookie sessionid=import requests
url = "http://localhost/api/api/namescreenhits/mark-as"
headers = {"cookie": "sessionid="}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {cookie: 'sessionid='}};
fetch('http://localhost/api/api/namescreenhits/mark-as', 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 => "http://localhost/api/api/namescreenhits/mark-as",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_COOKIE => "sessionid=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "http://localhost/api/api/namescreenhits/mark-as"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("cookie", "sessionid=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost/api/api/namescreenhits/mark-as")
.header("cookie", "sessionid=")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost/api/api/namescreenhits/mark-as")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["cookie"] = 'sessionid='
response = http.request(request)
puts response.read_bodyUse this endpoint to selectively assess specific hits by providing their IDs.
Assessment Decisions:
TRUE_HIT— Confirmed as a true hitFALSE_HIT— Confirmed as a false hit
Authorizations
Response
200
No response body
⌘I
