get list of areas inside an area
If you pass it an area it will return a list of areas within that area.
Arguments
area (Integer or Keyword, Optional)
The area keyword or id of an area/city/state/country
Example:
<?xml version='1.0' encoding='utf-8'?>
<soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
<soap:Body>
<area_list xmlns="http://www.spraci.com/services/soap/">
<data>
<appkey></appkey>
<username></username>
<password></password>
<area>x0usa</area>
<name></name>
</data>
</area_list>
</soap:Body>
</soap:Envelope>
The response will contain an array of items like this:
<item xsi:type="tns:AreaRes">
<area_id xsi:type="xsd:string">72</area_id>
<name xsi:type="xsd:string">California</name>
<keyword xsi:type="xsd:string">x1california</keyword>
<parent xsi:type="xsd:string">x0usa</parent>
<timezone xsi:type="xsd:string">-7</timezone>
<latitude xsi:type="xsd:string">35.238636</latitude>
<longitude xsi:type="xsd:string">-119.04312</longitude>
<tzid xsi:type="xsd:string">America/Los_Angeles</tzid>
</item>