Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The API has only one method:
retrieveAuditLogs - this method returns the audit logs for a particular verification attempt.  All logs related to the specified validation attempt, including calls to external data sources, and any admin activity is returned.The wsdl for the AuditService API can be found at either https://test.edentiti.com/Registrations-Registrations/AuditServiceV0?wsdl for test, or at https://www.edentiti.com/Registrations-Registrations/AuditServiceV0?wsdl
See Web Service Endpoints for WSDL details. 

API Parameters

A successful audit log request call looks like the following:

Code Block
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://services.registrations.edentiti.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:retrieveAuditLogs>
         <accountId>account_id</accountId>
         <password>password</password>
         <verificationId>pUz9rXAc</verificationId>
      </ser:retrieveAuditLogs>
   </soapenv:Body>
</soapenv:Envelope>

 

...