Details.AddressDetail: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 29: Line 29:
* The Location element is required and its value must match an existing address.
* The Location element is required and its value must match an existing address.


* The following elements are optional and export only: AddressLine1, AddressLine2, City, State, Country, and ZipCode.
* The following elements are optional and export only: AddressLine1, AddressLine2, City, State, Country and ZipCode.





Revision as of 18:47, 24 October 2013

XML Element

<Detail>

<DetailTypeID />
<DisplayOrder />
<DetailStep />
<DetailSpan />
<DetailUIType />
<DetailName />
<DetailAddress>
<AddressData>
<AddressLine1 />
<AddressLine2 />
<City />
<State />
<Country />
<ZipCode />
<Location />
</AddressData>
</DetailAddress>

</Detail>



Description

  • The AddressData element is required.
  • The Location element is required and its value must match an existing address.
  • The following elements are optional and export only: AddressLine1, AddressLine2, City, State, Country and ZipCode.


Detail Sample

      <Detail> 
        <DetailTypeID>  1007  </DetailTypeID> 
        <DisplayOrder>  11  </DisplayOrder> 
        <DetailStep>  5  </DetailStep> 
        <DetailSpan>  No  </DetailSpan> 
        <DetailUIType>  AddressDetail  </DetailUIType> 
        <DetailName>  Example Address Detail  </DetailName> 
        <DetailAddress> 
          <AddressData> 
            <AddressLine1>  1450 S. Eastside Loop  </AddressLine1> 
            <AddressLine2 /> 
            <City>  Tucson  </City> 
            <State>  Arizona  </State> 
            <Country>  United States  </Country> 
            <ZipCode>  85710  </ZipCode> 
            <Location>  ReliaSoft Headquarters  </Location> 
          </AddressData> 
        </DetailAddress> 
      </Detail