Documentation.

Location Import.

Importing a location will include location data.

Embedded HTML is not allowed in any field.

Each FieldName must have a corresponding XML entity.

    Example:
    <?xml version='1.0' encoding='UTF-8'?>
    <Auctions>
       <Row>
          <field_1>data</field_1>
          <field_2>data</field_2>
          <field_3>data</field_3>
       </Row>
    </Auctions>

Required Pairs

 Order   Name   Value Type 
1 loc_name string (Required)
(150 character max)
2 loc_addr_1 string (Required)
(100 character max)
3 loc_addr_2 string (Optional)
(100 character max)
4 loc_city string (Required)
(40 character max)
5 loc_state string (Required - ie AL)
(6 character max)
6 loc_zip string (Required)
(20 character max)
7 country string (Required - ie USA)
(3 character max)
8 Latitude float (Optional)
9 Longitude float (Optional)
10 location_status string (Optional - D Delete Location)
(1 character max)
11 filler_4 number (Optional - If defined, location is updated. If not defined, location is added.)
Example XML
Additional rows can be included.

    Single Location:
    <?xml version="1.0" encoding="UTF-8"?>
    <Auctions>
    <Row>
      <loc_name> </loc_name>
      <loc_addr_1> </loc_addr_1>
      <loc_addr_2> </loc_addr_2>
      <loc_city> </loc_city>
      <loc_state> </loc_state>
      <loc_zip> </loc_zip>
      <country> </country>
      <Latitude> </Latitude>
      <Longitude> </Longitude>
      <location_status> </location_status>
      <filler_4> </filler_4>
    </Row>
    </Auctions>