Parameters are passed to the API in the URL string and are to be URL encoded, parameters marked with a lit bulb
(  ) are required and parameters denoted with an unlit
bulb (  ) are not and will have a default value if
not supplied.
|
Name |
Type |
Allowed Values |
Default |
Entries marked with a lit bulb (  ) are always
returned and entries marked with an unlit bulb (  ) are
not and will not be included in the API response packet if they have no value. Types marked with square
brackets are arrays, and any custom types are displayed at the bottom of this page (clicking on
the name of that type will take you to the definition).
01 <?xml version="1.0" encoding="utf-8"?>
02 <api-response>
03 <response-begin />
04 <method>ACCESS_GetAccountAuthLogs</method>
05 <result>
06 <authentication-count>1</authentication-count>
07 <authentication>
08 <connection-time>29 March 2007 @ 12:00</connection-time>
09 <successful>True</successful>
10 <ip-address>1.2.3.4</ip-address>
11 <nas-ip-address>5.6.7.8</nas-ip-address>
12 <nas-port>1234567890</nas-port>
13 <type>ADSL</type>
14 <message>You have connected successfully.</message>
15 </authentication>
16 <authentication>
17 <connection-time>29 March 2007 @ 12:00</connection-time>
18 <successful>False</successful>
19 <ip-address>9.0.1.2</ip-address>
20 <nas-ip-address>3.4.5.6</nas-ip-address>
21 <nas-port>12345</nas-port>
22 <type>Dial-up</type>
23 <message>Invalid password was provided when attempting to log-in (ex4mple).</message>
24 </authentication>
25 </result>
26 <error-count>0</error-count>
27 <response-end />
28 </api-response>
|