MemberLink


Click here for a complete list of operations.

UW_SSO_MemberLink_Registration

Register a member on MemberLink. Return codes: 0 = no match found. 1 = match found and member has been registered to MemberLink. 2 = match found and member was already registered to MemberLink, no changes made. 3 = match found but Member Status <> ‘Active’, no changes made. 4 = multiple matches found, no changes made.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /MemberLink.asmx HTTP/1.1
Host: uw-sso.osstf.on.ca
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/UW_SSO_MemberLink_Registration"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <UW_SSO_MemberLink_Registration xmlns="http://tempuri.org/">
      <MemberID>int</MemberID>
      <LastName>string</LastName>
      <SIN>string</SIN>
    </UW_SSO_MemberLink_Registration>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <UW_SSO_MemberLink_RegistrationResponse xmlns="http://tempuri.org/">
      <UW_SSO_MemberLink_RegistrationResult>int</UW_SSO_MemberLink_RegistrationResult>
    </UW_SSO_MemberLink_RegistrationResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /MemberLink.asmx HTTP/1.1
Host: uw-sso.osstf.on.ca
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <UW_SSO_MemberLink_Registration xmlns="http://tempuri.org/">
      <MemberID>int</MemberID>
      <LastName>string</LastName>
      <SIN>string</SIN>
    </UW_SSO_MemberLink_Registration>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <UW_SSO_MemberLink_RegistrationResponse xmlns="http://tempuri.org/">
      <UW_SSO_MemberLink_RegistrationResult>int</UW_SSO_MemberLink_RegistrationResult>
    </UW_SSO_MemberLink_RegistrationResponse>
  </soap12:Body>
</soap12:Envelope>