Obtaining a Users' Information from an API key
Is my understanding correct that there's no direct way to present a user-supplied API key and have the Kinde API return a JWT token? All I'm finding in the docs is an API Key validation endpoint, but that endpoint doesn't actually return any user info (Roles, Permissions, Info, etc). My usecase here is for enabling users to self-serve creating their own API keys and then being able to programatically hit API endpoints we expose. The idea being that their API key grants the same permissions as if they were themselves logged in to the frontend (fairly standard API Key usecase I think). Just am curious on the recommended approach to actually being able to construct a Users' object from the API Key (we use forward auth and have an JWT token injected for us on the UI side, but don't have seem to have this option available when using API keys presented by users)