Folder Analyses [ADD] Method (POST)
Folder Analyses [ADD] method is used to assign analyses to a folder.
Additional Request Parameters.
- folder_id: unique identifier of the target folder (in the request headline);
- types of assigned analyses (in the request body).
Analyses are assigned to all files in a folder by default. If an analysis should only be accomplished for particular files, the following addition is required: "source_media": ["media_id1","media_id2","media_idN"]. Below you will find examples for both cases.
An additional parameter should be specified to assign QUALITY analysis with the best frame extraction:
- "extract_best_shot": true
A block assigning QUALITY analysis with this additional parameter looks as follows:
{
"type": "quality",
"params": {
"extract_best_shot": true
}
}
Request Examples.
Example of running the Folder Analyses [ADD] method in Postman:

Examples of POST request syntax using Folder Analyses [ADD] method with following parameters:
- folder ID: “f5fea1c1-5797-487a-b0f5-673eea2f8a79”
- Assign QUALITY analysis to all files in the folder
- Applying BIOMETRY Analysis to all media in the folder
- Assign DOCUMENTS analysis to file media_id = “f35716ed-7abf-4198-8146-229eb4f2ad25” only
HTTP
Bash
Python
php
Java
POST /api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/ HTTP/1.1
Host: youradress.ru
X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1
Content-Type: application/json
User-Agent: PostmanRuntime/7.15.2
Accept: */*
Cache-Control: no-cache
Postman-Token: 1e710a2f-7d33-46d3-9e37-76609dd576b1,d9af1efc-7722-4542-9be0-7ae97f3c9351
Host: youradress.ru
Accept-Encoding: gzip, deflate
Content-Length: 216
Connection: keep-alive
cache-control: no-cache
{
"analyses": [
{
"type": "documents",
"source_media": [
"f35716ed-7abf-4198-8146-229eb4f2ad25"
]
},
{
"type": "biometry"
},
{
"type": "quality"
}
]
}
curl -X POST \
https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/ \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Cache-Control: no-cache' \
-H 'Connection: keep-alive' \
-H 'Content-Length: 216' \
-H 'Content-Type: application/json' \
-H 'Host: youradress.ru' \
-H 'Postman-Token: 1e710a2f-7d33-46d3-9e37-76609dd576b1,d6c27caf-df18-45bf-ba68-51c15dbfcbf6' \
-H 'User-Agent: PostmanRuntime/7.15.2' \
-H 'X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1' \
-H 'cache-control: no-cache' \
-d '{
"analyses": [
{
"type": "documents",
"source_media": [
"f35716ed-7abf-4198-8146-229eb4f2ad25"
]
},
{
"type": "biometry"
},
{
"type": "quality"
}
]
}'
import requests
url = "https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/"
payload = "{\n \"analyses\": [\n {\n \"type\": \"documents\",\n \"source_media\": [\n \"f35716ed-7abf-4198-8146-229eb4f2ad25\"\n ]\n },\n {\n \"type\": \"biometry\"\n },\n {\n \"type\": \"quality\"\n }\n ]\n}"
headers = {
'X-Forensic-Access-Token': "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1",
'Content-Type': "application/json",
'User-Agent': "PostmanRuntime/7.15.2",
'Accept': "*/*",
'Cache-Control': "no-cache",
'Postman-Token': "1e710a2f-7d33-46d3-9e37-76609dd576b1,9037ec68-1ed6-47cc-a108-8e9b270b3b41",
'Host': "youradress.ru",
'Accept-Encoding': "gzip, deflate",
'Content-Length': "216",
'Connection': "keep-alive",
'cache-control': "no-cache"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
setUrl('https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array(
'cache-control' => 'no-cache',
'Connection' => 'keep-alive',
'Content-Length' => '216',
'Accept-Encoding' => 'gzip, deflate',
'Host' => 'youradress.ru',
'Postman-Token' => '1e710a2f-7d33-46d3-9e37-76609dd576b1,7099457d-ea05-4b9c-8565-5baff4575fde',
'Cache-Control' => 'no-cache',
'Accept' => '*/*',
'User-Agent' => 'PostmanRuntime/7.15.2',
'Content-Type' => 'application/json',
'X-Forensic-Access-Token' => '0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1'
));
$request->setBody('{
"analyses": [
{
"type": "documents",
"source_media": [
"f35716ed-7abf-4198-8146-229eb4f2ad25"
]
},
{
"type": "biometry"
},
{
"type": "quality"
}
]
}');
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"analyses\": [\n {\n \"type\": \"documents\",\n \"source_media\": [\n \"f35716ed-7abf-4198-8146-229eb4f2ad25\"\n ]\n },\n {\n \"type\": \"biometry\"\n },\n {\n \"type\": \"quality\"\n }\n ]\n}");
Request request = new Request.Builder()
.url("https://youradress.ru/api/folders/f5fea1c1-5797-487a-b0f5-673eea2f8a79/analyses/")
.post(body)
.addHeader("X-Forensic-Access-Token", "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1")
.addHeader("Content-Type", "application/json")
.addHeader("User-Agent", "PostmanRuntime/7.15.2")
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Postman-Token", "1e710a2f-7d33-46d3-9e37-76609dd576b1,aaa963e2-df95-49d3-ac1b-4f65b052e3c8")
.addHeader("Host", "youradress.ru")
.addHeader("Accept-Encoding", "gzip, deflate")
.addHeader("Content-Length", "216")
.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 [ADD] method with similar parameters:
JSON
[
{
"time_created": 1579865266,
"time_updated": 1579865266,
"meta_data": null,
"analyse_id": "ee827785-c0e2-4c04-b4bc-8a83bbf7a6aa",
"folder_id": "f5fea1c1-5797-487a-b0f5-673eea2f8a79",
"type": "DOCUMENTS",
"state": "PROCESSING",
"results_data": null,
"confs": {
"authenticity": 0,
"capabilities": 508
},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"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"
}
],
"results_media": [
{
"media_association_id": 439997,
"analyse_id": "ee827785-c0e2-4c04-b4bc-8a83bbf7a6aa",
"results_data": null,
"media_association_type": "IMAGE",
"source_image_id": "f35716ed-7abf-4198-8146-229eb4f2ad25",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "PROCESSING",
"resolution": "PROCESSING"
},
{
"time_created": 1579865266,
"time_updated": 1579865266,
"meta_data": null,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"folder_id": "f5fea1c1-5797-487a-b0f5-673eea2f8a79",
"type": "BIOMETRY",
"state": "PROCESSING",
"results_data": null,
"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": 439998,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"results_data": null,
"media_association_type": "IMAGE",
"source_image_id": "47e235cc-8844-4716-9c3d-2e37764fe15f",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 439999,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"results_data": null,
"media_association_type": "IMAGE",
"source_image_id": "f35716ed-7abf-4198-8146-229eb4f2ad25",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440000,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440001,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440002,
"analyse_id": "dfed8b5b-815c-429c-b0a1-3287cb2a0a3a",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "PROCESSING",
"resolution": "PROCESSING"
},
{
"time_created": 1579865266,
"time_updated": 1579865266,
"meta_data": null,
"analyse_id": "b027f22f-6651-4efa-8f56-7ace2a6b581d",
"folder_id": "f5fea1c1-5797-487a-b0f5-673eea2f8a79",
"type": "QUALITY",
"state": "PROCESSING",
"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": 440003,
"analyse_id": "b027f22f-6651-4efa-8f56-7ace2a6b581d",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "c9bc6cae-39bc-4bd6-8b4f-571f9ed75810",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440004,
"analyse_id": "b027f22f-6651-4efa-8f56-7ace2a6b581d",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "4ad2ef2b-24ab-44ee-ae50-17d41bce6927",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440005,
"analyse_id": "b027f22f-6651-4efa-8f56-7ace2a6b581d",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "015dfea0-6109-4bcd-93c0-4d1953e77d99",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "PROCESSING",
"resolution": "PROCESSING"
}
]
Accomplishing an analysis takes time, the result should be viewed with Folder Analyses [LIST] method.
Details of JSON Response.
The response contains information on analyses assigned by request and corresponding processed files.