Description
The Notifications API returns the message headers for notifications. The first request will return the latest 200 notifications that were received by the character in the last week. Subsequent requests will return only the new items since the last request.
Call
Result
<?xml version='1.0' encoding='UTF-8'?>
<eveapi version="2">
<currentTime>2011-08-02 12:42:42</currentTime>
<result>
<rowset name="notifications" key="notificationID" columns="notificationID,typeID,senderID,sentDate,read">
<row notificationID="332801598" typeID="89" senderID="999999999" sentDate="2011-08-02 00:53:00" read="1" />
<row notificationID="350934324" typeID="18" senderID="999999999" sentDate="2011-08-01 23:47:00" read="1" />
</rowset>
</result>
<cachedUntil>2011-08-02 13:01:27</cachedUntil>
Result attributes
| Name
| Type
| Description
|
| notificationID
| int
| Unique notification ID for this notification.
|
| typeID
| int
| ID for the type of notification
|
| senderID
| int
| character id of the notification sender
|
| sentDate
| date string
| The date and time when this notification was sent
|
| read
| int
| 1 if it's read, 0 if it hasn't been
|
Notification Types
A table of notification typeIDs can be found here:
http://wiki.eve-id.net/APIv2_Char_Notifications_XML
Top Contributors For This Page