Evetech
Tool for the evetech API.
- Base URL:
https://esi.evetech.net/latest - Auth: OAuth 2.0 (user-delegated) — attach an InTouch
oauthcredential. Mint one withitcli.py /oauth <provider>(device-code) or/google-auth(Google); the server auto-refreshes the access token before each run, so the connector never handles or stores tokens.
Operations
get_alliances— GET /alliances/ — List all alliancesget_alliances_alliance_id— GET /alliances/{alliance_id}/ — Get alliance informationget_alliances_alliance_id_contacts— GET /alliances/{alliance_id}/contacts/ — Get alliance contactsget_alliances_alliance_id_contacts_labels— GET /alliances/{alliance_id}/contacts/labels/ — Get alliance contact labelsget_alliances_alliance_id_corporations— GET /alliances/{alliance_id}/corporations/ — List alliance's corporationsget_alliances_alliance_id_icons— GET /alliances/{alliance_id}/icons/ — Get alliance icon
Inputs
- a linked
oauthcredential (no key inputs) — the server injects a freshAuthorization: Bearerfrom it operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_alliances
# (attach an 'oauth' credential to the task — no inline secrets)
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
operation |
string | yes | — | One of: get_alliances, get_alliances_alliance_id, get_alliances_alliance_id_contacts, get_alliances_alliance_id_contacts_labels, get_alliances_alliance_id_corporations, get_alliances_alliance_id_icons |
alliance_id |
string | no | — | Path parameter alliance_id (required by some operations). |
query |
string | no | — | Query-string parameters as a JSON object string, e.g. {"limit": 50}. Parsed and url-encoded onto the request. |