azure get url of storage account for use in logic app

Anonymous
2023-09-08T21:55:57.3233333+00:00
{
  "status": 400,
  "message": "Provided storage account endpoint ('202323248.')  doesn't follow the naming convention. Storage Account name should be between 3 and 24 characters (lowercase letters and numbers). If providing the Storage Account endpoint, make sure to enter the full URI (for example https://accountname.blob.storage.net)\r\nclientRequestId: d977e573-6bae-4b43-bc50-64efc30690ac",
  "error": {
    "message": "Provided storage account endpoint ('202323248.')  doesn't follow the naming convention. Storage Account name should be between 3 and 24 characters (lowercase letters and numbers). If providing the Storage Account endpoint, make sure to enter the full URI (for example https://accountname.blob.storage.net)"
  },
  "source": "azureblob-eus.azconn-eus-002.p.azurewebsites.net"
}


How do I fix this?

Azure Storage
Azure Storage
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,539 questions
Azure Logic Apps
Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,551 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,639 questions
{count} votes

Accepted answer
  1. Tushar Kumar 3,371 Reputation points MVP
    2023-09-08T23:06:12.36+00:00

    https://<storage-account-name>.blob.core.windows.net is the format for blob URL.

    It seems like you are using incorrect Uri.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Sumarigo-MSFT 47,471 Reputation points Microsoft Employee Moderator
    2023-09-11T12:32:44.5566667+00:00

    @Vince Weeks Welcome to Microsoft Q&A Forum, Thank you for posting your query here!

    Based on the error message: I would recommened to please refer to the troubleshooting steps in this article.

    Resolve errors for storage account names

    Here are some steps to address this issue:

    Verify Storage Account Name: Ensure that the storage account name you are using follows the Azure naming conventions. Storage account names must be between 3 and 24 characters in length and can contain only lowercase letters and numbers. No special characters, uppercase letters, or spaces are allowed.

    Check Endpoint: If you are providing an endpoint for the storage account, make sure you are using the correct format. The correct format for the storage account endpoint should be something like https://yourstorageaccount.blob.core.windows.net.

    Check for Typos: Double-check for any typos or mistakes in the storage account name or endpoint you are using. Even a small typo can result in this error.

    Use the Right Name: Ensure that you are using the name of the storage account, not its resource ID or any other identifier. The name is what should follow the naming conventions.

    Validation in Code: If you are configuring this in code, make sure that you are using the correct parameters and that the storage account name or endpoint is being provided correctly.

    If you continue to face issues or if you believe you are using a correct storage account name or endpoint but still encounter this error, please double-check your configuration and ensure that you are using the correct information. If the problem persists, it may be helpful to provide more context or code snippets for a more specific troubleshooting process.

    Please let us know if you have any further queries. I’m happy to assist you further.    


    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.


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.