i am not able to make my newly create application in azure ad app Verified on consent screen,

aalbin tom 0 Reputation points
2024-05-31T06:27:06.96+00:00

i have done
{

"associatedApplications": [

{

  "applicationId": "a3338bda-aec8-4587-ba11-ce87dc2a48df"

}
```  ]

}  
  and still not verified
Microsoft Entra
{count} votes

1 answer

Sort by: Most helpful
  1. Akshay-MSFT 17,656 Reputation points Microsoft Employee
    2024-06-03T06:32:54.6333333+00:00

    @aalbin tom

    Kindly try to run the following Graph Explorer command and validate if the app gets verified with 204 response or not.

    You can use Microsoft Graph to both set and unset your app’s verified publisher and check the result after performing one of these operations. The result can be seen on both the application object corresponding to your app registration and any service principals that have been instantiated from that app.

    • Set Verified Publisher

    Request

    POST /applications/00001111-aaaa-2222-bbbb-3333cccc4444/setVerifiedPublisher 
    
    { 
    
        "verifiedPublisherId": "12345678" 
    
    } 
    

    Response

    `204 No Content 
    `
    

    Note verifiedPublisherID is your Partner One ID.

    Body

    HTTP/1.1 200 OK

    {

    "id": "00001111-aaaa-2222-bbbb-3333cccc4444", 
    
    ... 
    
    "verifiedPublisher" : { 
    
        "displayName": "myexamplePublisher", 
    
        "verifiedPublisherId": "12345678", 
    
        "addedDateTime": "2019-12-10T00:00:00" 
    
    } 
    

    }

    If you don't have any further queries and the suggested answer is as per your business need, please "Accept the answer", This will help us and others in the community as well.

    Thanks,

    Akshay Kaushik

    0 comments No comments