Azure Bot Endpoint

PowerBI Service Account 0 Reputation points
2026-08-21T06:43:09.8366667+00:00

what endpoint format does it expects behind that Messaging Endpoint field

Azure AI Bot Service
Azure AI Bot Service

An Azure service that provides an integrated environment for bot development.

0 comments No comments

2 answers

Sort by: Newest
  1. kagiyama yutaka 5,330 Reputation points
    2026-08-21T09:23:32.8533333+00:00

    I think you use the bot’s public HTTPS URL that receives Bot Framework POSTs, and the SDK’s default path is https://<host>/api/messages.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  2. AI answer

    2026-08-21T06:43:20.51+00:00

    Azure Bot Service typically expects the messaging endpoint to be the bot application's web endpoint with /api/messages appended.

    Example format:

    https://<your-bot-hostname>/api/messages

    In Azure portal:

    1. Open the Azure Bot resource.
    2. Go to Configuration.
    3. In Messaging endpoint, paste the web app hostname URL.
    4. Append /api/messages.
    5. Select Apply.

    In the SDK/API surface, this endpoint is represented as the bot's Endpoint property.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

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