Is it possible to make client api calls without the SDK? I can't find documentation for the api

Is it possible to publish the client API urls?

I have tried using the node realm SDK and if it is imported into a file then the node process doesn’t exit.

I just want to be able to create user API keys so I would like to do it without using the SDK.

I can get credentials by calling:
https://eu-west-1.aws.services.cloud.mongodb.com/api/client/v2.0/app/<<client_app_id>>/auth/providers/custom-function/login

I assume there is something similar to then get/create/delete user api keys, but I cannot find it documented anywhere.

Hi @Rob_Cassidy ,

All the SDKs are open source, so you can look into that to find the proper calls: probably a good point to start, in your case, is the Web SDK, usually available at this location, as it’s in Javascript and extensively commented. At a first glance, you could look at the class ApiKeyAuth, that should have what you need: of course, to create a API Key for a user, you need to be logged in with the same user.