I've the activity log claims for an event. but how do i get more data on the appid. i tried everything like serviceprincipals,applications. literally everything. Anyone knows how to get more details for the appid. i redacted some information

Yaswanth Reddy 60 Reputation points
2024-11-27T10:38:16.4833333+00:00

"claims":

{

    "aud": "https://management.core.windows.net/",

    "iss": "https://sts.windows.net/",

    "iat": "1732283494",

    "nbf": "1732283494",

    "exp": "1732287751",

    "http://schemas.microsoft.com/claims/authnclassreference": "1",

    "aio": "AVQAq/8YAAAAULbob8HU0KPyWB6BwFf9KeEdS5E48SsaaVprkwIDWck1wiGViZ1JRpaUqIr9DQ3E3pLloQazHUR1GawnTQSQKwYPgcK13wq/pGTUjCDuZJc=",

    "http://schemas.microsoft.com/claims/authnmethodsreferences": "pwd,mfa",

    "appid": "dc807dec-d211-4b3f-bc8a-43b3443c4874",

    "appidacr": "0",

    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname": "",

    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname": "",

    "groups": "",

    "idtyp": "user",

    "ipaddr": "",

    "name": "",

    "http://schemas.microsoft.com/identity/claims/objectidentifier": "",

    "puid": "10032002B554098E",

    "pwd_exp": "1005561",

    "pwd_url": "https://portal.microsoftonline.com/ChangePassword.aspx",

    "rh": "1.AQ0AAtfav1_cdECFqUnouxKrqUZIf3kAutdPukPawfj2MBMCATcNAA.",

    "http://schemas.microsoft.com/identity/claims/scope": "user_impersonation",

    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier": "8hZ9vrV4rBZU9xTIgUKoDEkVHFMfOVYH0yi5cPN4Rwo",

    "http://schemas.microsoft.com/identity/claims/tenantid": "",

    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": "",

    "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn": "",

    "uti": "QiR2rcIMGUKl5yYns1sXAA",

    "ver": "1.0",

    "wids": "158c047a-c907-4556-b7ef-446551a6b5f7,b79fbf4d-3ef9-4689-8143-76b194e85509",

    "xms_idrel": "28 1",

    "xms_tcdt": "1396299209"

},
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
13,406 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
23,938 questions
0 comments No comments
{count} votes

Accepted answer
  1. Raja Pothuraju 19,225 Reputation points Microsoft External Staff
    2024-11-29T04:41:28.6433333+00:00

    Hello @Yaswanth Reddy,

    Thank you for posting your query on Microsoft Q&A.

    Based on your statement, it seems you’re looking for details about an application using its AppID. As Yakun mentioned, you can easily retrieve this information using Graph Explorer by filtering the request with the AppID. Below are the steps and screenshots for better clarity on reproducing this process:

    Login in to Graph Explorer with a Global Admin account. Send a GET request to the following URL:

    https://graph.microsoft.com/v1.0/applications(appId='{appId}')
    

    Replace {appId} with your application's AppID in the URL format below:

    https://graph.microsoft.com/v1.0/applications(appId='142cadc3-87f9-460e-8920-xxxxxxxxxxx')
    

    Execute the query, and it will return detailed information about the application.

    User's image

    If you encounter any errors while sending the GET request, please let us know so we can assist you further.

    Thanks,
    Raja Pothuraju.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Yakun Huang-MSFT 10,555 Reputation points Microsoft External Staff
    2024-11-28T06:47:06.46+00:00

    Hello Yaswanth Reddy,

    Thank you for reaching out to Microsoft Support!

    You can obtain application details by sending the following request from appId:

    GET https://graph.microsoft.com/v1.0/applications(appId='{appId}')
    

    You can also obtain application information in Azure AD through appId.

    Reference document:

    https://learn.microsoft.com/en-us/graph/api/application-get?view=graph-rest-1.0&tabs=http

    Hope this helps.

    If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.