A cloud-based identity and access management service for securing user authentication and resource access
Hello Morgan Korn,
The Power Platform API service principal doesn’t show up automatically in some tenants. Initially, I also could not find that API service principal in my tenant as below:
In such cases, Microsoft’s guidance is to force a refresh by manually creating the service principal using Microsoft Graph.
You can provision Power Platform API by running below PowerShell commands:
#Install the Microsoft Graph PowerShell SDK module
Install-Module Microsoft.Graph -Scope CurrentUser -Repository PSGallery -Force
Connect-MgGraph
New-MgServicePrincipal -AppId 8578e004-a5c6-46e7-913e-12f58912df43 -DisplayName "Power Platform API"
After running this, wait few minutes and check again.
Once it shows up, you’ll be able to add the required API permissions to your app registration.
For more details on this, refer this MS Documentation: Authentication - Power Platform API permissions | Microsoft
Hope this helps! Feel free to reach out for further queries.
If this answers your query, do click Accept Answer and Yes for was this answer helpful, which may help members with similar questions.