POST api/find-the-image/traverse
Executes an exploration step using the input image. The data is passed to the underlying data structure and a new view is returned
Request Information
URI Parameters
None.
Body Parameters
MultimediaObjectName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
Metadata | string |
None. |
|
URL | string |
None. |
|
SourcePageUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" }
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
New collection of images
ExplorationResultName | Description | Type | Additional information |
---|---|---|---|
Images | Collection of MultimediaObject |
None. |
|
nodes | Collection of GraphNode |
None. |
|
edges | Collection of GraphEdge |
None. |
|
CurrentTime | date |
None. |
|
PerformanceCounters | Dictionary of string [key] and decimal number [value] |
None. |
|
Query | ExplorationQuery |
None. |
|
nodeCoordinates | Collection of Collection of decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{ "Images": [ { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" }, { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" } ], "nodes": [ { "Metadata": "sample string 1", "ID": "sample string 2", "url": "sample string 3", "urlWithSifts": "sample string 4", "aspectRatio": 5.1 }, { "Metadata": "sample string 1", "ID": "sample string 2", "url": "sample string 3", "urlWithSifts": "sample string 4", "aspectRatio": 5.1 } ], "edges": [ { "source": 1, "target": 2, "value": 3.1 }, { "source": 1, "target": 2, "value": 3.1 } ], "CurrentTime": "2025-04-07T11:23:29.4226003+02:00", "PerformanceCounters": { "sample string 1": 2.1, "sample string 3": 4.1 }, "Query": { "Images": [ { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" }, { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" } ], "Query": { "Text": "sample string 1", "Count": 2, "Offset": 3 }, "ImagesToExclude": [ { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" }, { "Id": 1, "Metadata": "sample string 2", "URL": "sample string 3", "SourcePageUrl": "sample string 4" } ], "DataSourceType": "sample string 1", "Configuration": { "Token": "sample string 1", "Name": "sample string 2" }, "ConnectionId": "sample string 2" }, "nodeCoordinates": [ [ 1.1, 2.1 ], [ 1.1, 2.1 ] ] }