All URIs are relative to https://esi.tech.ccp.is/latest
Method | HTTP request | Description |
---|---|---|
getCharactersCharacterIdClones | GET /characters/{character_id}/clones/ | Get clones |
getCharactersCharacterIdImplants | GET /characters/{character_id}/implants/ | Get active implants |
\nullx27\ESI\nullx27\ESI\Models\GetCharactersCharacterIdClonesOk getCharactersCharacterIdClones($characterId, $datasource, $token, $userAgent, $xUserAgent)
Get clones
A list of the character's clones --- Alternate route: /dev/characters/{character_id}/clones/
Alternate route: /v3/characters/{character_id}/clones/
--- This route is cached for up to 120 seconds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: evesso
$config = nullx27\ESI\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new nullx27\ESI\Api\ClonesApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$characterId = 56; // int | An EVE character ID
$datasource = "tranquility"; // string | The server name you would like data from
$token = "token_example"; // string | Access token to use if unable to set a header
$userAgent = "userAgent_example"; // string | Client identifier, takes precedence over headers
$xUserAgent = "xUserAgent_example"; // string | Client identifier, takes precedence over User-Agent
try {
$result = $apiInstance->getCharactersCharacterIdClones($characterId, $datasource, $token, $userAgent, $xUserAgent);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ClonesApi->getCharactersCharacterIdClones: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
characterId | int | An EVE character ID | |
datasource | string | The server name you would like data from | [optional] [default to tranquility] |
token | string | Access token to use if unable to set a header | [optional] |
userAgent | string | Client identifier, takes precedence over headers | [optional] |
xUserAgent | string | Client identifier, takes precedence over User-Agent | [optional] |
\nullx27\ESI\nullx27\ESI\Models\GetCharactersCharacterIdClonesOk
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
int[] getCharactersCharacterIdImplants($characterId, $datasource, $token, $userAgent, $xUserAgent)
Get active implants
Return implants on the active clone of a character --- Alternate route: /dev/characters/{character_id}/implants/
Alternate route: /legacy/characters/{character_id}/implants/
Alternate route: /v1/characters/{character_id}/implants/
--- This route is cached for up to 300 seconds
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: evesso
$config = nullx27\ESI\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new nullx27\ESI\Api\ClonesApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$characterId = 56; // int | An EVE character ID
$datasource = "tranquility"; // string | The server name you would like data from
$token = "token_example"; // string | Access token to use if unable to set a header
$userAgent = "userAgent_example"; // string | Client identifier, takes precedence over headers
$xUserAgent = "xUserAgent_example"; // string | Client identifier, takes precedence over User-Agent
try {
$result = $apiInstance->getCharactersCharacterIdImplants($characterId, $datasource, $token, $userAgent, $xUserAgent);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ClonesApi->getCharactersCharacterIdImplants: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
characterId | int | An EVE character ID | |
datasource | string | The server name you would like data from | [optional] [default to tranquility] |
token | string | Access token to use if unable to set a header | [optional] |
userAgent | string | Client identifier, takes precedence over headers | [optional] |
xUserAgent | string | Client identifier, takes precedence over User-Agent | [optional] |
int[]
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]