Call Api Custom
In brief
The documentation now spells out “on-behalf-of (OBO)” on first use in the token scenario guidance. The referenced method is unchanged.
What Entra admins need to know
Administrators get clearer terminology when following the existing guidance; no action or product behavior change is indicated.
This editorial summary was generated by AI from the documentation changes. Verify important details in the full Microsoft Learn article.
Documentation change
The comparison below shows only the changed extract. Use the full-page view for complete context.
- For app only token scenario, use `CreateAuthorizationHeaderForAppAsync` method.
- For OBOthe on-behalf-of (OBO) token scenario, use `CreateAuthorizationHeaderForUserAsync` method
```csharp
using Microsoft.Identity.Abstractions;
@@ -437,7 +437,7 @@ After determining what works for you, proceed to call your custom web API. - For `WithAgentIdentity`, you either call the API using an app only token (autonomous agent) or on-behalf of a user (interactive agent). - For app only token scenario, use `CreateAuthorizationHeaderForAppAsync` method.- - For OBO token scenario, use `CreateAuthorizationHeaderForUserAsync` method + - For the on-behalf-of (OBO) token scenario, use `CreateAuthorizationHeaderForUserAsync` method ```csharp using Microsoft.Identity.Abstractions; 