Server

Some responses contain a server object:

Attributes

  • int id: The server object contains a unique identifier for the server.

Some requests use server id in the URL.

Fields

  • string name: A customized name for the server.
  • string location: The physical location of the server.
  • boolean armageddon: Is armageddon currently taking place?
    string true or false
  • int settlement_count: How many settlement are currently active on the server?
    >=0
  • int uptime: How many seconds has this server been up for
    >=0
  • int users_active: How many users are online on this server
    >=0
  • int time: The current local time for the server.
    (unix timestamp)

Example

...
<server id="3">
  <name>Atlanta #1</name>
  <location>Atlanta, Georgia, USA</location>
  <armageddon>false</armageddon>
  <settlement_count>1<settlement_count>
  <uptime>86400</uptime>
  <users_active>7</users_active>
  <time>1274969671</time>
</server>
...