ESI\Client\WarsApi

All URIs are relative to https://esi.tech.ccp.is/latest

Method HTTP request Description
getWars GET /wars/ List wars
getWarsWarId GET /wars/{war_id}/ Get war information
getWarsWarIdKillmails GET /wars/{war_id}/killmails/ List kills for a war

getWars

int[] getWars($max_war_id, $datasource)

List wars

Return a list of wars --- Alternate route: /v1/wars/ Alternate route: /legacy/wars/ Alternate route: /dev/wars/ --- This route is cached for up to 3600 seconds

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new ESI\Client\Api\WarsApi();
$max_war_id = 56; // int | Only return wars with ID smaller than this.
$datasource = "tranquility"; // string | The server name you would like data from

try {
    $result = $api_instance->getWars($max_war_id, $datasource);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling WarsApi->getWars: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
max_war_id int Only return wars with ID smaller than this. [optional]
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

int[]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getWarsWarId

\ESI\Client\Model\GetWarsWarIdOk getWarsWarId($war_id, $datasource)

Get war information

Return details about a war --- Alternate route: /v1/wars/{war_id}/ Alternate route: /legacy/wars/{war_id}/ Alternate route: /dev/wars/{war_id}/ --- This route is cached for up to 3600 seconds

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new ESI\Client\Api\WarsApi();
$war_id = 56; // int | ID for a war
$datasource = "tranquility"; // string | The server name you would like data from

try {
    $result = $api_instance->getWarsWarId($war_id, $datasource);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling WarsApi->getWarsWarId: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
war_id int ID for a war
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

\ESI\Client\Model\GetWarsWarIdOk

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

getWarsWarIdKillmails

\ESI\Client\Model\GetWarsWarIdKillmails200Ok[] getWarsWarIdKillmails($war_id, $page, $datasource)

List kills for a war

Return a list of kills related to a war --- Alternate route: /v1/wars/{war_id}/killmails/ Alternate route: /legacy/wars/{war_id}/killmails/ Alternate route: /dev/wars/{war_id}/killmails/ --- This route is cached for up to 3600 seconds

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new ESI\Client\Api\WarsApi();
$war_id = 56; // int | A valid war ID
$page = 1; // int | Which page to query, starting at 1, 2000 killmails per page.
$datasource = "tranquility"; // string | The server name you would like data from

try {
    $result = $api_instance->getWarsWarIdKillmails($war_id, $page, $datasource);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling WarsApi->getWarsWarIdKillmails: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
war_id int A valid war ID
page int Which page to query, starting at 1, 2000 killmails per page. [optional] [default to 1]
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

\ESI\Client\Model\GetWarsWarIdKillmails200Ok[]

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]