ESI\Client\IncursionsApi

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

Method HTTP request Description
getIncursions GET /incursions/ List incursions

getIncursions

\ESI\Client\Model\GetIncursions200Ok[] getIncursions($datasource)

List incursions

Return a list of current incursions --- Alternate route: /v1/incursions/ Alternate route: /legacy/incursions/ Alternate route: /dev/incursions/ --- This route is cached for up to 300 seconds

Example

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

$api_instance = new ESI\Client\Api\IncursionsApi();
$datasource = "tranquility"; // string | The server name you would like data from

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

Parameters

Name Type Description Notes
datasource string The server name you would like data from [optional] [default to tranquility]

Return type

\ESI\Client\Model\GetIncursions200Ok[]

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]