feng-gui homepage
Feng-GUI Services: API Documentation

GetImageAOIs method
Get the AOIs data of an image.
The response AOIs data is in JSON format.
Credit: no credit is charged when using this method.

Arguments
ImageID
   The unique id of an image.
   for example, the image id of the following URL is 9aa34142-669d-4261-a08f-f80b4c0b58ba
   http://service.feng-gui.com/users/USERNAME/files/heatmaps/9aa34142-669d-4261-a08f-f80b4c0b58ba.png
Request
POST /soap/api.asmx HTTP/1.1
Host: service.feng-gui.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.feng-gui.com/GetImageAOIs"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetImageAOIs xmlns="http://www.feng-gui.com/">
      <ImageID>string</ImageID>
    </GetImageAOIs>
  </soap:Body>
</soap:Envelope>            

Response
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <GetImageAOIsResponse xmlns="http://www.feng-gui.com/">
      <GetImageAOIsResult>string</GetImageAOIsResult>
    </GetImageAOIsResponse>
  </soap:Body>
</soap:Envelope>