APIv2 Corp MemberTracking XML
From EVEDev
| API Methods - Category Home - API Overview - API Page Index - API Libraries - API Wanted Features |
Contents |
[edit] /corp/MemberTracking.xml.aspx
[edit] Overview
For player corps this returns the member list (same as in game). Otherwise returns an error code (207).
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name | Type | Description |
|---|---|---|
| KeyID | Int | API Key ID |
| vCode | char(64) | Verification code |
| extended | int | Optional, 1 for extended version |
[edit] Sample for Extended version
<?xml version='1.0' encoding='UTF-8'?> <eveapi version="2"> <currentTime>2012-02-01 00:13:25</currentTime> <result> <rowset name="members" key="characterID" columns="characterID,name,startDateTime,baseID,base,title,logonDateTime,logoffDateTime,locationID,location,shipTypeID,shipType,roles,grantableRoles"> <row characterID="921331161" name="Winter Fairy" startDateTime="2011-07-09 19:41:00" baseID="0" base="" title="" logonDateTime="2012-01-31 07:59:53" logoffDateTime="2012-01-31 08:05:54" locationID="61000561" location="I-CMZA VIII - Comix Zone Alpha" shipTypeID="-1" shipType="" roles="9223372036854775807" grantableRoles="0"/> <row characterID="2041099574" name="Kelyona" startDateTime="2009-03-14 01:31:00" baseID="0" base="" title="" logonDateTime="2012-01-31 15:35:24" logoffDateTime="2012-01-31 15:38:21" locationID="61000541" location="X-41DA I - 41 Bottles of Beer" shipTypeID="-1" shipType="" roles="9223372036854775807" grantableRoles="0"/> </rowset> </result> <cachedUntil>2012-02-01 00:56:19</cachedUntil> </eveapi>
[edit] Sample for Simple version
<?xml version='1.0' encoding='UTF-8'?> <eveapi version="2"> <currentTime>2012-02-01 00:17:30</currentTime> <result> <rowset name="members" key="characterID" columns="characterID,name,startDateTime,baseID,base,title"> <row characterID="921331161" name="Winter Fairy" startDateTime="2011-07-09 19:41:00" baseID="0" base="" title=""/> <row characterID="2041099574" name="Kelyona" startDateTime="2009-03-14 01:31:00" baseID="0" base="" title=""/> </rowset> </result> <cachedUntil>2012-02-01 00:56:19</cachedUntil> </eveapi>
StartDateTime is the date that person joined the corp.

