Authentication - Authenticate - Authenticates a webservice user
Service URL: https://api.learningassistant.com/webservices/soap/authenticate.cfc?wsdl
Request
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Body>
    <Authenticate xmlns="https://api.learningassistant.com">
      <szUsername> {szUsername} </szUsername>
      <szPassword> {szPassword} </szPassword>
    </Authenticate>
  </soapenv:Body>
</soapenv:Envelope>Response
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <soapenv:Header>
    <authToken loggedin="YES" soapenv:actor="" soapenv:mustUnderstand="0" xmlns="https://api.learningassistant.com" xmlns:ns1="https://api.learningassistant.com"> 
      <id type="xsd:string"> {id} </id> 
      <uuid type="xsd:string"> {uuid} </uuid> 
    </authToken> 
  </soapenv:Header> 
  <soapenv:Body>
    <AuthenticateResponse xmlns="https://api.learningassistant.com">
      <AuthenticateReturn xsi:type="xsd:string">YES</AuthenticateReturn> 
    </AuthenticateResponse> 
  </soapenv:Body>
</soapenv:Envelope>Request Fields
- 
Authenticate array
Required
 Top level field for Authenticate method
 
- 
szUsername string
Required
 Username
 
- 
szPassword string
Required
 Password
 
