Any thirdparty app that wants to utilize SeAT roles/squad has to acquire the user_id corresponding to the character_id. This cannot be easily done with the current SeAT API, as one has to repeatedly call v2/users until it finds a user with the character_id. So it's good to have an API endpoint to accept an character_id and return the corresponding user_id.
Background
I am using SeAT and Dokuwiki with https://github.com/GoldenGnu/dokuwiki-plugin-evesso for my corp. I want to grant permission to view a certain category of wiki pages if a player is in a specific squad and/or has a specific role (i.e. allow cap pilots to see capital doctrines).
The problem here is that v2/roles/* and v2/squads/* work with user_id, and I want to get the user_id from character_id without calling v2/users too many times.
Motivation
Any thirdparty app that wants to utilize SeAT roles/squad has to acquire the
user_id
corresponding to thecharacter_id
. This cannot be easily done with the current SeAT API, as one has to repeatedly callv2/users
until it finds a user with thecharacter_id
. So it's good to have an API endpoint to accept ancharacter_id
and return the correspondinguser_id
.Background
I am using SeAT and Dokuwiki with https://github.com/GoldenGnu/dokuwiki-plugin-evesso for my corp. I want to grant permission to view a certain category of wiki pages if a player is in a specific squad and/or has a specific role (i.e. allow cap pilots to see capital doctrines).
The problem here is that
v2/roles/*
andv2/squads/*
work withuser_id
, and I want to get theuser_id
fromcharacter_id
without callingv2/users
too many times.