From EVEDev
[edit] /corp/Shareholders.xml.aspx
[edit] Overview
Returns the character and corporation share holders of a corporation.
[edit] Data Caching
This method is cached according to the Modified Short Cache Style.
[edit] Input Arguments
| Name
| Type
| Description
|
| userID
| int
| userID of account for authentication.
|
| characterID
| int
| Character ID of a char with director? or higher access in the corp you want the share holders for.
|
| apiKey
| char(64)
| Full access API key of account.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2008-09-02 17:45:01</currentTime>
<result>
<rowset name="characters" key="shareholderID" columns="shareholderID,shareholderName,shareholderCorporationID,shareholderCorporationName,shares">
<row shareholderID="126891489" shareholderName="Dragonaire" shareholderCorporationID="632257314" shareholderCorporationName="Corax." shares="1" />
</rowset>
<rowset name="corporations" key="shareholderID" columns="shareholderID,shareholderName,shares" />
</result>
<cachedUntil>2008-09-02 18:45:01</cachedUntil>
</eveapi>
[edit] Characters Output Rowset Columns
| Name
| Type
| Description
|
| shareholderID
| int
| ID number of the character share holder.
|
| shareholderName
| string
| Character share holder's name.
|
| shareholderCorporationID
| int
| Corporation ID of share holder.
|
| shareholderCorporationName
| string
| Corporation name of share holder.
|
| shares
| int
| Number of shares.
|
[edit] Corporations Output Rowset Columns
| Name
| Type
| Description
|
| shareholderID
| int
| ID number of the corporation share holder.
|
| shareholderName
| string
| Corporation share holder's name.
|
| shares
| int
| Number of shares.
|