Skip to main content
PUT
/
api
/
customer
/
{customerId}
/
document
/
{documentId}
/
liveness
updateLivenessResult
curl --request PUT \
  --url https://api.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Domain-ID: <x-domain-id>' \
  --data '
{
  "conclusion": true,
  "auditImages": "<string>",
  "faceDetails": {
    "eyesClosed": {
      "value": false,
      "confidence": 123
    },
    "sunglasses": {
      "value": false,
      "confidence": 123
    },
    "faceOccluded": {
      "value": false,
      "confidence": 123
    }
  },
  "facialCheck": true,
  "livenessResult": true,
  "referenceImage": "<string>",
  "liivenessConfidence": 123
}
'
import requests

url = "https://api.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness"

payload = {
    "conclusion": True,
    "auditImages": "<string>",
    "faceDetails": {
        "eyesClosed": {
            "value": False,
            "confidence": 123
        },
        "sunglasses": {
            "value": False,
            "confidence": 123
        },
        "faceOccluded": {
            "value": False,
            "confidence": 123
        }
    },
    "facialCheck": True,
    "livenessResult": True,
    "referenceImage": "<string>",
    "liivenessConfidence": 123
}
headers = {
    "X-Domain-ID": "<x-domain-id>",
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.put(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'PUT',
  headers: {
    'X-Domain-ID': '<x-domain-id>',
    Authorization: 'Bearer <token>',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    conclusion: true,
    auditImages: '<string>',
    faceDetails: {
      eyesClosed: {value: false, confidence: 123},
      sunglasses: {value: false, confidence: 123},
      faceOccluded: {value: false, confidence: 123}
    },
    facialCheck: true,
    livenessResult: true,
    referenceImage: '<string>',
    liivenessConfidence: 123
  })
};

fetch('https://api.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness', 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.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "PUT",
  CURLOPT_POSTFIELDS => json_encode([
    'conclusion' => true,
    'auditImages' => '<string>',
    'faceDetails' => [
        'eyesClosed' => [
                'value' => false,
                'confidence' => 123
        ],
        'sunglasses' => [
                'value' => false,
                'confidence' => 123
        ],
        'faceOccluded' => [
                'value' => false,
                'confidence' => 123
        ]
    ],
    'facialCheck' => true,
    'livenessResult' => true,
    'referenceImage' => '<string>',
    'liivenessConfidence' => 123
  ]),
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>",
    "Content-Type: application/json",
    "X-Domain-ID: <x-domain-id>"
  ],
]);

$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.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness"

	payload := strings.NewReader("{\n  \"conclusion\": true,\n  \"auditImages\": \"<string>\",\n  \"faceDetails\": {\n    \"eyesClosed\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"sunglasses\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"faceOccluded\": {\n      \"value\": false,\n      \"confidence\": 123\n    }\n  },\n  \"facialCheck\": true,\n  \"livenessResult\": true,\n  \"referenceImage\": \"<string>\",\n  \"liivenessConfidence\": 123\n}")

	req, _ := http.NewRequest("PUT", url, payload)

	req.Header.Add("X-Domain-ID", "<x-domain-id>")
	req.Header.Add("Authorization", "Bearer <token>")
	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.put("https://api.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness")
  .header("X-Domain-ID", "<x-domain-id>")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{\n  \"conclusion\": true,\n  \"auditImages\": \"<string>\",\n  \"faceDetails\": {\n    \"eyesClosed\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"sunglasses\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"faceOccluded\": {\n      \"value\": false,\n      \"confidence\": 123\n    }\n  },\n  \"facialCheck\": true,\n  \"livenessResult\": true,\n  \"referenceImage\": \"<string>\",\n  \"liivenessConfidence\": 123\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.artemis.cynopsis.co/api/customer/{customerId}/document/{documentId}/liveness")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Put.new(url)
request["X-Domain-ID"] = '<x-domain-id>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"conclusion\": true,\n  \"auditImages\": \"<string>\",\n  \"faceDetails\": {\n    \"eyesClosed\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"sunglasses\": {\n      \"value\": false,\n      \"confidence\": 123\n    },\n    \"faceOccluded\": {\n      \"value\": false,\n      \"confidence\": 123\n    }\n  },\n  \"facialCheck\": true,\n  \"livenessResult\": true,\n  \"referenceImage\": \"<string>\",\n  \"liivenessConfidence\": 123\n}"

response = http.request(request)
puts response.read_body
{
  "id": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "createdBy": {
    "email": "<string>",
    "firstName": "<string>",
    "fullName": "<string>",
    "id": 123,
    "lastName": "<string>"
  },
  "updatedBy": {
    "email": "<string>",
    "firstName": "<string>",
    "fullName": "<string>",
    "id": 123,
    "lastName": "<string>"
  },
  "customerId": 123,
  "frontName": "<string>",
  "backName": "<string>",
  "type": "<string>",
  "number": "<string>",
  "authenticity": "<string>",
  "issueDate": "2023-12-25",
  "expiryDate": "2023-12-25",
  "showExpiryNotification": true,
  "front": "<string>",
  "back": "<string>",
  "faceCompare": {},
  "liveness": {},
  "other": {},
  "allowedDocumentFormat": true
}
Description: Manually put a new Liveness result into Artemis via API.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

X-Domain-ID
integer<int64>
required

X-Domain-ID

Path Parameters

customerId
integer<int64>
required

customerId

documentId
integer<int64>
required

documentId

Body

application/json

LivenessResultRequestDto

conclusion
boolean
auditImages
string
faceDetails
AresLivenessFaceDetailsDto · object
facialCheck
boolean
livenessResult
boolean
referenceImage
string
liivenessConfidence
integer<int64>

Response

OK

id
integer<int64>
createdAt
string<date-time>
updatedAt
string<date-time>
createdBy
UserInfo · object
updatedBy
UserInfo · object
customerId
integer<int64>
frontName
string
backName
string
type
string
number
string
authenticity
string
issueDate
string<date>
expiryDate
string<date>
showExpiryNotification
boolean
front
string
back
string
docverCheckStatus
enum<string>
Available options:
PERFORMED,
NOT_PERFORMED
faceCompare
object
liveness
object
other
object
allowedDocumentFormat
boolean