Issue:
I need to create a service principal. But there is no POST call for a servicePrincipal.
Article:
This operation is exposed in the beta version of the API. The basic request is
POST https://graph.microsoft.com/beta/servicePrincipals
{
"appId": "your-registered-app-id"
}
That's it. You do need to have created an app first though.
Thank you. I guess the documentation is yet to be updated here [https://docs.microsoft.com/en-us/graph/api/resources/serviceprincipal?view=graph-rest-beta]
Most helpful comment
This operation is exposed in the beta version of the API. The basic request is
That's it. You do need to have created an app first though.