Folder Analyses [LIST] Method (GET)
Folder Analyses [LIST] method is used to view details of all analyses in a folder.
Additional Request Parameters.
All parameters for this method are optional and can be added to the request headline, as necessary.
- folder_id: unique identifier of the target folder.
Filtering the Output:
- analyse_id=;
Filtering by the analysis unique identifier; - analyse_id.exclude=;
Filtering by the analysis unique identifier, exclusive parameter. IDs specified with this parameter will not appear in the search results; - type=;
Filtering by analysis type. Available type options:- BIOMETRY;
- DOCUMENTS;
- QUALITY.
- type.exclude=;
Filtering by the type of analysis, exclusive parameter. Types specified with this setting will not appear in the search results; - state=;
Filtering by the analysis status. Available status options:- DECLINED: A negative resolution is taken for the analysis (images/videos do not match the quality criteria);
- SUCCESS: A positive resolution is taken for the analysis;
- OPERATOR_REQUIRED: An operator should take resolution;
- PROCESSING: Analysis in progress;
- FAILED: Technical errors occurred during the analysis.
- state.exclude=;
Filtering by the analysis status, exclusive parameter. Statuses specified with this setting will not appear in the search results.
Request Examples.
Example of running the Folder Analyses [LIST] method in Postman:

Examples of GET request syntax using Folder Analyses [LIST] method with following parameters:
- Folder ID: “f5fea1c1-5797-487a-b0f5-673eea2f8a79”;
- Analysis types: QUALITY and BIOMETRY only;
- Status of all analyses: FINISHED.
HTTP
Bash
Python
php
Java
GET /api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/?type=BIOMETRY,QUALITY& state=FINISHED HTTP/1.1
Host: youradress.ru
X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1
User-Agent: PostmanRuntime/7.15.2
Accept: */*
Cache-Control: no-cache
Postman-Token: 766a9370-cdee-4187-bebe-d1dc225ec416,639d22d5-7fe7-41e3-9b08-317c2a5f2247
Host: youradress.ru
Accept-Encoding: gzip, deflate
Connection: keep-alive
cache-control: no-cache
curl -X GET \
'https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/?type=BIOMETRY,QUALITY&state=FINISHED' \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Cache-Control: no-cache' \
-H 'Connection: keep-alive' \
-H 'Host: youradress.ru' \
-H 'Postman-Token: 766a9370-cdee-4187-bebe-d1dc225ec416,f94c8634-6aa8-4309-bc82-e0065c99e081' \
-H 'User-Agent: PostmanRuntime/7.15.2' \
-H 'X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1' \
-H 'cache-control: no-cache'
import requests
url = "https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/"
querystring = {"type":"BIOMETRY,QUALITY","state":"FINISHED"}
headers = {
'X-Forensic-Access-Token': "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1",
'User-Agent': "PostmanRuntime/7.15.2",
'Accept': "*/*",
'Cache-Control': "no-cache",
'Postman-Token': "766a9370-cdee-4187-bebe-d1dc225ec416,9c2657d5-4759-4e87-b65b-25989bbb4e4a",
'Host': "youradress.ru",
'Accept-Encoding': "gzip, deflate",
'Connection': "keep-alive",
'cache-control': "no-cache"
}
response = requests.request("GET", url, headers=headers, params=querystring)
print(response.text)
setUrl('https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/');
$request->setMethod(HTTP_METH_GET);
$request->setQueryData(array(
'type' => 'BIOMETRY,QUALITY',
'state' => 'FINISHED'
));
$request->setHeaders(array(
'cache-control' => 'no-cache',
'Connection' => 'keep-alive',
'Accept-Encoding' => 'gzip, deflate',
'Host' => 'youradress.ru',
'Postman-Token' => '766a9370-cdee-4187-bebe-d1dc225ec416,edb5133f-28c5-4db2-94fd-ff842f65bbcc',
'Cache-Control' => 'no-cache',
'Accept' => '*/*',
'User-Agent' => 'PostmanRuntime/7.15.2',
'X-Forensic-Access-Token' => '0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1'
));
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/?type=BIOMETRY,QUALITY&state=FINISHED")
.get()
.addHeader("X-Forensic-Access-Token", "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1")
.addHeader("User-Agent", "PostmanRuntime/7.15.2")
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Postman-Token", "766a9370-cdee-4187-bebe-d1dc225ec416,b698fda2-8b8c-434f-ba00-72e7d17e60cf")
.addHeader("Host", "youradress.ru")
.addHeader("Accept-Encoding", "gzip, deflate")
.addHeader("Connection", "keep-alive")
.addHeader("cache-control", "no-cache")
.build();
Response response = client.newCall(request).execute();
Example of JSON Response.
Example of the system's JSON response to calling Folder Analyses [LIST] method with similar parameters:
JSON
[
{
"time_created": 1579863652,
"time_updated": 1579863665,
"meta_data": {
"some_key": "some_value"
},
"analyse_id": "555c97c2-d8df-4762-85d4-1130922cb074",
"folder_id": "f5fea1c1-5797-487a-b0f5-673eea2f8a79",
"type": "QUALITY",
"state": "FINISHED",
"results_data": null,
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1579857057,
"time_updated": 1579857057,
"meta_data": {},
"media_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "6d1f0aba436940d7aa24677cacd26821",
"size": 16307,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 19.96,
"md5": "22946e88b86b78c6fe8f12d17332697c",
"size": 4734874,
"width": 800,
"height": 600,
"duration": 4.61,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 19.96,
"md5": "22946e88b86b78c6fe8f12d17332697c",
"size": 4734874,
"width": 800,
"height": 600,
"duration": 4.61,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_left",
"orientation_portrait"
],
"original_name": "2726e120-422e-46e1-a658-367949a9cc3d.mp4",
"video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810.mp4"
},
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "65c26e859cd0ab26858c59ac68d27956",
"size": 18510,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 30.0,
"md5": "aff630574ccfaf1eba06aaf44c9b12ca",
"size": 5969474,
"width": 800,
"height": 600,
"duration": 4.84,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 30.0,
"md5": "aff630574ccfaf1eba06aaf44c9b12ca",
"size": 5969474,
"width": 800,
"height": 600,
"duration": 4.84,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "2c2177a1-ed2b-4443-b2c7-e489ab205fd4.mp4",
"video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927.mp4"
},
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "3a344bc524b988c9d3a6dafd1e0ada4f",
"size": 18740,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 30.0,
"md5": "2b90287b90e84ce1417f86d0081c4d79",
"size": 6123340,
"width": 800,
"height": 600,
"duration": 4.92,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 30.0,
"md5": "2b90287b90e84ce1417f86d0081c4d79",
"size": 6123340,
"width": 800,
"height": 600,
"duration": 4.92,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "372d54ce-80f4-4d2e-a3c3-708f6162e599.mp4",
"video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99.mp4"
}
],
"results_media": [
{
"media_association_id": 439984,
"analyse_id": "555c97c2-d8df-4762-85d4-1130922cb074",
"results_data": {
"confidence_replay": 8.61668098e-11,
"confidence_liveness": null,
"confidence_spoofing": 8.61668098e-11
},
"media_association_type": "VIDEO",
"source_video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 439985,
"analyse_id": "555c97c2-d8df-4762-85d4-1130922cb074",
"results_data": {
"confidence_replay": 0.152095318,
"confidence_liveness": null,
"confidence_spoofing": 0.152095318
},
"media_association_type": "VIDEO",
"source_video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 439986,
"analyse_id": "555c97c2-d8df-4762-85d4-1130922cb074",
"results_data": {
"confidence_replay": 0.181880578,
"confidence_liveness": null,
"confidence_spoofing": 0.181880578
},
"media_association_type": "VIDEO",
"source_video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "SUCCESS",
"resolution": "SUCCESS"
},
{
"time_created": 1579863652,
"time_updated": 1579863666,
"meta_data": {
"some_key": "some_value"
},
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"folder_id": "f5fea1c1-5797-487a-b0f5-673eea2f8a79",
"type": "BIOMETRY",
"state": "FINISHED",
"results_data": {
"max_confidence": 1.0,
"min_confidence": 0.0
},
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "47e235cc-8844-4716-9c3d-2e37764fe15f",
"media_type": "IMAGE_FOLDER",
"info": {
"thumb": {
"md5": "933fa1f5dd44d2c43f75e8044d4fa7a1",
"size": 17070,
"width": 300,
"height": 280,
"mime-type": "image/jpeg"
},
"original": {
"md5": "54b5d75d01488817bf041a5273de4585",
"size": 50971,
"width": 445,
"height": 416,
"mime-type": "image/jpeg"
}
},
"tags": [
"photo_selfie"
],
"original_name": "2.jpg",
"image_id": "47e235cc-8844-4716-9c3d-2e37764fe15f",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/47e235cc-8844-4716-9c3d-2e37764fe15f.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/47e235cc-8844-4716-9c3d-2e37764fe15f_thumb.jpeg"
},
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "f35716ed-7abf-4198-8146-229eb4f2ad25",
"media_type": "IMAGE_FOLDER",
"info": {
"thumb": {
"md5": "1827f89da365f01a24deb0329d231f80",
"size": 18261,
"width": 300,
"height": 300,
"mime-type": "image/jpeg"
},
"original": {
"md5": "9b1393886e54d93e1303ff284ae4dedf",
"size": 147204,
"width": 492,
"height": 492,
"mime-type": "image/jpeg"
}
},
"tags": [
"photo_id"
],
"original_name": "1.jpg",
"image_id": "f35716ed-7abf-4198-8146-229eb4f2ad25",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/f35716ed-7abf-4198-8146-229eb4f2ad25.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/f35716ed-7abf-4198-8146-229eb4f2ad25_thumb.jpeg"
},
{
"time_created": 1579857057,
"time_updated": 1579857057,
"meta_data": {},
"media_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "6d1f0aba436940d7aa24677cacd26821",
"size": 16307,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 19.96,
"md5": "22946e88b86b78c6fe8f12d17332697c",
"size": 4734874,
"width": 800,
"height": 600,
"duration": 4.61,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 19.96,
"md5": "22946e88b86b78c6fe8f12d17332697c",
"size": 4734874,
"width": 800,
"height": 600,
"duration": 4.61,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_left",
"orientation_portrait"
],
"original_name": "2726e120-422e-46e1-a658-367949a9cc3d.mp4",
"video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/c9bc6cae-39bc-4bd6-8b4f-571f9ed75810.mp4"
},
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "65c26e859cd0ab26858c59ac68d27956",
"size": 18510,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 30.0,
"md5": "aff630574ccfaf1eba06aaf44c9b12ca",
"size": 5969474,
"width": 800,
"height": 600,
"duration": 4.84,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 30.0,
"md5": "aff630574ccfaf1eba06aaf44c9b12ca",
"size": 5969474,
"width": 800,
"height": 600,
"duration": 4.84,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "2c2177a1-ed2b-4443-b2c7-e489ab205fd4.mp4",
"video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/4ad2ef2b-24ab-44ee-ae50-17d41bce6927.mp4"
},
{
"time_created": 1579853333,
"time_updated": 1579853333,
"meta_data": {},
"media_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "3a344bc524b988c9d3a6dafd1e0ada4f",
"size": 18740,
"width": 225,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 30.0,
"md5": "2b90287b90e84ce1417f86d0081c4d79",
"size": 6123340,
"width": 800,
"height": 600,
"duration": 4.92,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 30.0,
"md5": "2b90287b90e84ce1417f86d0081c4d79",
"size": 6123340,
"width": 800,
"height": 600,
"duration": 4.92,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "372d54ce-80f4-4d2e-a3c3-708f6162e599.mp4",
"video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"video_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99.mp4",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99_thumb.jpg",
"preview_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/015dfea0-6109-4bcd-93c0-4d1953e77d99.mp4"
}
],
"results_media": [
{
"media_association_id": 439979,
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"results_data": null,
"media_association_type": "IMAGE",
"source_image_id": "47e235cc-8844-4716-9c3d-2e37764fe15f",
"output_images": [
{
"time_created": 1579863660,
"time_updated": 1579863660,
"meta_data": {},
"media_id": "aebf6a01-af8d-4b13-8a29-6e2453fb9c46",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "703c227547e3672cc68b81d7f19332ba",
"size": 4436,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "e8058d2c50c05772443dacc61ccb8f73",
"size": 3278,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "aebf6a01-af8d-4b13-8a29-6e2453fb9c46",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/aebf6a01-af8d-4b13-8a29-6e2453fb9c46.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/aebf6a01-af8d-4b13-8a29-6e2453fb9c46_thumb.jpeg",
"media_association_id": 439979
}
],
"collection_persons": []
},
{
"media_association_id": 439980,
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"results_data": null,
"media_association_type": "IMAGE",
"source_image_id": "f35716ed-7abf-4198-8146-229eb4f2ad25",
"output_images": [
{
"time_created": 1579863666,
"time_updated": 1579863666,
"meta_data": {},
"media_id": "ede176da-61ed-4e5b-9712-e8d793c2eb62",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "2e54d60e947c27e29a51d57182b260ba",
"size": 4896,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "f5b630a8364bd372296ca15ddb17f07c",
"size": 3568,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "ede176da-61ed-4e5b-9712-e8d793c2eb62",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/ede176da-61ed-4e5b-9712-e8d793c2eb62.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/ede176da-61ed-4e5b-9712-e8d793c2eb62_thumb.jpeg",
"media_association_id": 439980
}
],
"collection_persons": []
},
{
"media_association_id": 439981,
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 439982,
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"output_images": [
{
"time_created": 1579863656,
"time_updated": 1579863656,
"meta_data": {},
"media_id": "e9f0029a-4af6-415b-ba7e-a0ab89a2ea02",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "f8e760da609db733f55936545635d820",
"size": 4552,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "50a334c22f7f05bfe7f897d39babf716",
"size": 3417,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "e9f0029a-4af6-415b-ba7e-a0ab89a2ea02",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/e9f0029a-4af6-415b-ba7e-a0ab89a2ea02.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/e9f0029a-4af6-415b-ba7e-a0ab89a2ea02_thumb.jpeg",
"media_association_id": 439982
}
],
"collection_persons": []
},
{
"media_association_id": 439983,
"analyse_id": "0ae3f1a0-cedc-4052-80eb-59578bb759b1",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"output_images": [
{
"time_created": 1579863660,
"time_updated": 1579863660,
"meta_data": {},
"media_id": "e5d979c2-8f22-4eab-955f-3e96c7a8451c",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "4c3c579baf48b84632deeaf9d93dab11",
"size": 4547,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "a7aaf54dcd6a172115e0ecb2115d333e",
"size": 3414,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "e5d979c2-8f22-4eab-955f-3e96c7a8451c",
"original_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/e5d979c2-8f22-4eab-955f-3e96c7a8451c.jpeg",
"thumb_url": "http://youradress.ru/static/f5fea1c1-5797-487a-b0f5-673eea2f8a79/e5d979c2-8f22-4eab-955f-3e96c7a8451c_thumb.jpeg",
"media_association_id": 439983
}
],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "DECLINED",
"resolution": "DECLINED"
}
]
Details of JSON Response.
The response contains information on analyses in the folder and corresponding processed files.