From EVEDev
[edit] /corp/Standings.xml.aspx
[edit] Overview
Returns the standings to and from a corporation.
[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>2008-09-02 18:08:40</currentTime>
<result>
<corporationStandings>
<standingsTo>
<rowset name="characters" key="toID" columns="toID,toName,standing">
</rowset>
<rowset name="corporations" key="toID" columns="toID,toName,standing">
</rowset>
<rowset name="alliances" key="toID" columns="toID,toName,standing">
</rowset>
</standingsTo>
<standingsFrom>
<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>
</corporationStandings>
<allianceStandings>
<standingsTo>
<rowset name="corporations" key="toID" columns="toID,toName,standing">
</rowset>
<rowset name="alliances" key="toID" columns="toID,toName,standing">
</rowset>
</standingsTo>
</allianceStandings>
</result>
<cachedUntil>2008-09-02 21:08:41</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.
|
| 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.
|
| 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].
|