Plugin development for beyond trust platform in .net.
-
Anybody have worked on custom plugin development for beyond trust privileged access management platform in .net?
-
Anybody have worked on custom plugin development for beyond trust privileged access management platform in .net?
Any questions about a specific product like that would be better asked of Support for that product. The likelyhood of someone developing for such a product and seeing your post is beyond tiny.
Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles. Dave Kreskowiak
-
You don’t build plugins directly for BeyondTrust, you just talk to it through the REST API. In .NET it’s as simple as an HttpClient call with the API key:
var client = new HttpClient { BaseAddress = new Uri("https://your-url/api/public/v3/") };
client.DefaultRequestHeaders.Add("Authorization", "PS-Auth key=API_KEY; runas=API_USER;");
var res = await client.GetStringAsync("users");
Console.WriteLine(res);
Swap "users" with "accounts", "sessions", etc. depending on what you need.