From EVEDev
[edit] /corp/Standings.xml.aspx
[edit] Overview
Returns the standings from NPC corporations and factions as well as agents. Since Tyrannis no longer provides standings towards characters or entities, use the Contact List API instead.
[edit] Data Caching
This method is cached according to the ?.
[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 standings for.
|
| apiKey
| char(64)
| Full access API key of account.
|
[edit] Output XML
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2010-10-28 22:22:03</currentTime>
<result>
<corporationNPCStandings>
<rowset name="agents" key="fromID" columns="fromID,fromName,standing">
</rowset>
<rowset name="NPCCorporations" key="fromID" columns="fromID,fromName,standing">
</rowset>
<rowset name="factions" key="fromID" columns="fromID,fromName,standing">
</rowset>
</standingsFrom>
</corporationNPCStandings>
</result>
<cachedUntil>2010-10-28 22:22:03</cachedUntil>
</eveapi>
[edit] Output Rowset Columns
| Name
| Type
| Description
|
| toID
| int
| ID number of character, corporation or alliance your corporation or alliance has set standing to. No longer used since Tyrannis expansion.
|
| toName
| string
| Name of character, corporation or alliance your corporation or alliance has set standing to. If this is empty, that character, corporation or alliance has been deleted. No longer used since Tyrannis expansion.
|
| fromID
| int
| ID number of agent, NPC corporation, or faction you have standing with. See agtAgents.agentID, crpNPCCorporations.corporationID, and chrFactions.factionID.
|
| fromName
| string
| Name of agent, NPC corporation or faction you have standing with.
|
| standing
| float
| Current standing with this entity. This is the standing as displayed in-game and is in the range [-10,10].
|