Reference for https://directory.doas.ga.gov/Services/CDService/ShowEmployeeDetails?AuthCode={AUTHCODE}&EmployeeId={EMPLOYEEID}

Url: https://directory.doas.ga.gov/Services/CDService/ShowEmployeeDetails?AuthCode={AUTHCODE}&EmployeeId={EMPLOYEEID}

HTTP Method: GET

This operation supports JSONP responses. The callback function can be specified using the "callback" Url query parameter.

Message direction Format Body
Request N/A The Request body is empty.
Response Xml Example,Schema
Response Json Example

The following is an example response Xml body:

<Employee xmlns="http://schemas.datacontract.org/2004/07/ContactDirectory">
  <Message>String content</Message>
  <ResultCode>String content</ResultCode>
  <Address1Latitude>12678967.543233</Address1Latitude>
  <Address1Line1>String content</Address1Line1>
  <Address1Line2>String content</Address1Line2>
  <Address1Longitude>12678967.543233</Address1Longitude>
  <Address2Flag>true</Address2Flag>
  <Address2Latitude>12678967.543233</Address2Latitude>
  <Address2Line1>String content</Address2Line1>
  <Address2Line2>String content</Address2Line2>
  <Address2Longitude>12678967.543233</Address2Longitude>
  <Designation>String content</Designation>
  <Email>String content</Email>
  <Facebook>String content</Facebook>
  <Fax>String content</Fax>
  <GooglePlus>String content</GooglePlus>
  <HoSFlag>true</HoSFlag>
  <HoSPictureURL>String content</HoSPictureURL>
  <Id>9223372036854775807</Id>
  <LinkedIn>String content</LinkedIn>
  <Name>String content</Name>
  <ParentUnitID>9223372036854775807</ParentUnitID>
  <ParentUnitName>String content</ParentUnitName>
  <Phone1>String content</Phone1>
  <Phone2>String content</Phone2>
  <Room>String content</Room>
  <SortOrder>9223372036854775807</SortOrder>
  <Twitter>String content</Twitter>
  <UnitId>9223372036854775807</UnitId>
  <UnitName>String content</UnitName>
</Employee>

The following is an example response Json body:

{
	"Message":"String content",
	"ResultCode":"String content",
	"Address1Latitude":12678967.543233,
	"Address1Line1":"String content",
	"Address1Line2":"String content",
	"Address1Longitude":12678967.543233,
	"Address2Flag":true,
	"Address2Latitude":12678967.543233,
	"Address2Line1":"String content",
	"Address2Line2":"String content",
	"Address2Longitude":12678967.543233,
	"Designation":"String content",
	"Email":"String content",
	"Facebook":"String content",
	"Fax":"String content",
	"GooglePlus":"String content",
	"HoSFlag":true,
	"HoSPictureURL":"String content",
	"Id":9223372036854775807,
	"LinkedIn":"String content",
	"Name":"String content",
	"ParentUnitID":9223372036854775807,
	"ParentUnitName":"String content",
	"Phone1":"String content",
	"Phone2":"String content",
	"Room":"String content",
	"SortOrder":9223372036854775807,
	"Twitter":"String content",
	"UnitId":9223372036854775807,
	"UnitName":"String content"
}

The following is the response Xml Schema:

<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/ContactDirectory" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/ContactDirectory" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="Employee">
    <xs:complexContent mixed="false">
      <xs:extension base="tns:ServiceResult">
        <xs:sequence>
          <xs:element minOccurs="0" name="Address1Latitude" nillable="true" type="xs:decimal" />
          <xs:element minOccurs="0" name="Address1Line1" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Address1Line2" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Address1Longitude" nillable="true" type="xs:decimal" />
          <xs:element minOccurs="0" name="Address2Flag" type="xs:boolean" />
          <xs:element minOccurs="0" name="Address2Latitude" nillable="true" type="xs:decimal" />
          <xs:element minOccurs="0" name="Address2Line1" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Address2Line2" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Address2Longitude" nillable="true" type="xs:decimal" />
          <xs:element minOccurs="0" name="Designation" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Email" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Facebook" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Fax" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="GooglePlus" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="HoSFlag" type="xs:boolean" />
          <xs:element minOccurs="0" name="HoSPictureURL" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Id" nillable="true" type="xs:long" />
          <xs:element minOccurs="0" name="LinkedIn" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="ParentUnitID" type="xs:long" />
          <xs:element minOccurs="0" name="ParentUnitName" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Phone1" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Phone2" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="Room" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="SortOrder" nillable="true" type="xs:long" />
          <xs:element minOccurs="0" name="Twitter" nillable="true" type="xs:string" />
          <xs:element minOccurs="0" name="UnitId" nillable="true" type="xs:long" />
          <xs:element minOccurs="0" name="UnitName" nillable="true" type="xs:string" />
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
  </xs:complexType>
  <xs:element name="Employee" nillable="true" type="tns:Employee" />
  <xs:complexType name="ServiceResult">
    <xs:sequence>
      <xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
      <xs:element minOccurs="0" name="ResultCode" nillable="true" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="ServiceResult" nillable="true" type="tns:ServiceResult" />
</xs:schema>

Additional response Xml Schemas:

<xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="anyType" nillable="true" type="xs:anyType" />
  <xs:element name="anyURI" nillable="true" type="xs:anyURI" />
  <xs:element name="base64Binary" nillable="true" type="xs:base64Binary" />
  <xs:element name="boolean" nillable="true" type="xs:boolean" />
  <xs:element name="byte" nillable="true" type="xs:byte" />
  <xs:element name="dateTime" nillable="true" type="xs:dateTime" />
  <xs:element name="decimal" nillable="true" type="xs:decimal" />
  <xs:element name="double" nillable="true" type="xs:double" />
  <xs:element name="float" nillable="true" type="xs:float" />
  <xs:element name="int" nillable="true" type="xs:int" />
  <xs:element name="long" nillable="true" type="xs:long" />
  <xs:element name="QName" nillable="true" type="xs:QName" />
  <xs:element name="short" nillable="true" type="xs:short" />
  <xs:element name="string" nillable="true" type="xs:string" />
  <xs:element name="unsignedByte" nillable="true" type="xs:unsignedByte" />
  <xs:element name="unsignedInt" nillable="true" type="xs:unsignedInt" />
  <xs:element name="unsignedLong" nillable="true" type="xs:unsignedLong" />
  <xs:element name="unsignedShort" nillable="true" type="xs:unsignedShort" />
  <xs:element name="char" nillable="true" type="tns:char" />
  <xs:simpleType name="char">
    <xs:restriction base="xs:int" />
  </xs:simpleType>
  <xs:element name="duration" nillable="true" type="tns:duration" />
  <xs:simpleType name="duration">
    <xs:restriction base="xs:duration">
      <xs:pattern value="\-?P(\d*D)?(T(\d*H)?(\d*M)?(\d*(\.\d*)?S)?)?" />
      <xs:minInclusive value="-P10675199DT2H48M5.4775808S" />
      <xs:maxInclusive value="P10675199DT2H48M5.4775807S" />
    </xs:restriction>
  </xs:simpleType>
  <xs:element name="guid" nillable="true" type="tns:guid" />
  <xs:simpleType name="guid">
    <xs:restriction base="xs:string">
      <xs:pattern value="[\da-fA-F]{8}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{4}-[\da-fA-F]{12}" />
    </xs:restriction>
  </xs:simpleType>
  <xs:attribute name="FactoryType" type="xs:QName" />
  <xs:attribute name="Id" type="xs:ID" />
  <xs:attribute name="Ref" type="xs:IDREF" />
</xs:schema>

<tns:schema targetNamespace="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.w3.org/2001/XMLSchema">
  <tns:element name="schema">
    <tns:complexType />
  </tns:element>
</tns:schema>