ResLink

Get Guid List

This method retrieves the Guid List from ResLink's system database, not from the specified client's database. However the SOAP header will still need to be authorised.

Request Profile Table

Element | @Attribute Description/Contents
GetGuidList_RQ Root element of message.
  @AddedSince (optional) Filters Guids to only include if they were added after this date

Scenario:

You want to retrieve all of the ProCharter Guid mappings added since 1 January 2006


Example message:

<?xml version="1.0" encoding="utf-8"?>
<GetGuidList_RQ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AddedSince>2006-01-01T00:00:00</AddedSince> </GetGuidList_RQ>


Response Profile Table

Element | @Attribute Description/Contents
GetGuidList_RS Root element of message.
GuidList List of Guids
ProCharterGuid Element for a single Guid Record
  @GUID Guid value (max 20 chars)
  @Name Display Name
  @DateAdded Date Guid was added to ResLink

Example message:

<?xml version="1.0" encoding="utf-16"?>
<GetGuidList_RS xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <GuidList xmlns="ResLink">
      <ProCharterGUID GUID="100_ADV_TRAVEL_NT" Name="100% Adventure Travel, Northern Territory" DateAdded="2007-05-15T00:00:00" />
      <ProCharterGUID GUID="100_ADV_TRAVEL_SYD" Name="100% Adventure Travel Centre Sydney" DateAdded="2008-03-17T00:00:00" />
      <ProCharterGUID GUID="100_ADVENTURE_TRAVEL" Name="100% Adventure Travel, Adelaide" DateAdded="2007-04-11T00:00:00" />
      <ProCharterGUID GUID="1770_BACKPACKERS" Name="1770 Backpackers (Agnes Waters)" DateAdded="2009-09-15T00:00:00" />
......guid list continues......
      <ProCharterGUID GUID="YOUTH_SHACK_DARWIN" Name="Youth Shack Darwin" DateAdded="2006-01-01T00:00:00" />
   </GuidList>
   <TimeStamp xmlns="ResLink">2009-10-08T14:28:52.7044636+10:00</TimeStamp>
   <Errors xmlns="ResLink" />
   <Warnings xmlns="ResLink" />
</GetGuidList_RS>