Azure Service Health for Subscription ID

Urkmez Hakan (BSH GDS-PSUG) 0 Reputation points
2025-01-27T08:17:26.9233333+00:00

Hello,

We got a following mail from [azure-noreply@microsoft.com] to some.body@some.hidden.company.com. But we dont have this Subscription ID someidid-****-****-81ef-hiddenhidden in our Azure account. Can you please help us how can we find the this Subscription ID belong to which Azure account. We aren't able to find this Subscription ID id some.user@some-company.onmicrosoft.com.

Ensure the right people can continue to access security advisories in Azure Service Health for security Subscription ID: someidid-****-****-81ef-hiddenhidden.

Mail:some.user@some.company.com

Required action

If you’re accessing security advisories using the Azure portal:

·    Review your security RBAC assignments before 22 October 2025 and make changes or additions as needed.

  • PII Removed by Moderator.
Azure Role-based access control
Azure Role-based access control
An Azure service that provides fine-grained access management for Azure resources, enabling you to grant users only the rights they need to perform their jobs.
876 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Chaithra E 405 Reputation points Microsoft Vendor
    2025-01-29T11:45:54.56+00:00

    Hello @Urkmez Hakan (BSH GDS-PSUG) ,

    Thank you for reaching out to Microsoft Support.

    In order to check the subscription's tenant, you need to have RBAC access to the subscription.

    If you have access to the subscription then you can call this REST API and get the subscription's associated tenant ID. https://learn.microsoft.com/en-us/rest/api/resources/subscriptions/get?tabs=HTTP

    Alternatively, you can use this PowerShell function to retrieve the tenant ID from a subscription ID:

    function get-tenantIdFromSubscriptionID($subId){
        $response = try {(Invoke-WebRequest -UseBasicParsing -Uri "https://management.azure.com/subscriptions/$($subId)?api-version=2015-01-01" -ErrorAction Stop).BaseResponse} catch { $_.Exception.Response } 
        $stringHeader = $response.Headers.ToString()
        return($stringHeader.SubString($stringHeader.IndexOf("login.windows.net")+18,36))
    }
    get-tenantIdFromSubscriptionID("<subscriptionID>")
    

    If you're able to access the Azure Portal, you can follow these steps to find the subscription ID:

    1. Sign in to the Azure portal.
    2. Under the Azure services heading, select Subscriptions. If you don't see Subscriptions here, use the search box to find it.
    3. Find the subscription in the list, and note the Subscription ID shown in the second column. If no subscriptions appear, or you don't see the right one, you may need to switch directories to show the subscriptions from a different Microsoft Entra tenant.

    Screenshot showing the option to copy a subscription ID in the Azure portal.

    Reference : Get subscription and tenant IDs in the Azure portal - Azure portal | Microsoft Learn

    If you do not have access to the subscription and unsure under which tenant the subscription is residing, then I would suggest to open a Support ticket with Azure Subscription Management Team:

    277708-image.png

    Also, raising a support ticket to Azure Billing and Subscription management team is free of cost.

    I hope this information is helpful. Please feel free to reach out if you have any further questions. If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Thanks,
    Chaithra.


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.