GET api/resource/ImageCallouts?catalog={catalog}&imageId={imageId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| catalog | string |
Required |
|
| imageId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Callout| Name | Description | Type | Additional information |
|---|---|---|---|
| Label | string |
None. |
|
| PointX | integer |
None. |
|
| PointY | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Label": "sample string 1",
"PointX": 2,
"PointY": 3
},
{
"Label": "sample string 1",
"PointX": 2,
"PointY": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfResourceController.Callout xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KWParts.BlackBox.Controllers">
<ResourceController.Callout>
<Label>sample string 1</Label>
<PointX>2</PointX>
<PointY>3</PointY>
</ResourceController.Callout>
<ResourceController.Callout>
<Label>sample string 1</Label>
<PointX>2</PointX>
<PointY>3</PointY>
</ResourceController.Callout>
</ArrayOfResourceController.Callout>