I have C# code running which is registering an app ok as below
var application = new Application
{
DisplayName = appName
};
await _client.Applications
.Request()
.AddAsync(application);
I would like to also add an API permission to the new app either in this post or in a subsequent edit
Any ideas please?