Description
The Contact List API returns the corporation and the alliance contact lists. This is accessible by any character who is a member of the corporation.
It is worth noting that the contactID number returned can be either a characterID, corporationID or allianceID depending on what type of contact it is. As IDs are unique across types it should be possible to determine which type it is from the ID number.
Call
Result
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2010-12-19 07:15:16</currentTime>
<result>
<rowset name="corporateContactList" key="contactID" columns="contactID,contactName,standing">
<row contactID="797400947" contactName="CCP Garthagk" standing="-10" />
</rowset>
<rowset name="allianceContactList" key="contactID" columns="contactID,contactName,standing">
<row contactID="797400947" contactName="CCP Garthagk" standing="5" />
</rowset>
</result>
<cachedUntil>2010-12-19 23:40:24</cachedUntil>
</eveapi>
Result attributes
| Name
| Type
| Description
|
| contactID
| int
| The ID of the contact in the contact list.
|
| contactName
| string
| The name of the contact.
|
| standing
| int
| the standing of the character with regards to the contact (between -10 and +10).
|
Top Contributors For This Page