POST api/multimedia-exploration/explore
Executes an exploration step for the given query
Request Information
URI Parameters
None.
Body Parameters
ExplorationQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| Images | Collection of MultimediaObject |
None. |
|
| Query | BingSearchQuery |
None. |
|
| ImagesToExclude | Collection of MultimediaObject |
None. |
|
| DataSourceType | string |
None. |
|
| Configuration | UserConfiguration |
None. |
|
| ConnectionId | string |
None. |
Request 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"
}
],
"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"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ExplorationResult| Name | 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-02-25T08:54:03.2301846+01: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
]
]
}