You are viewing documentation for our open source project which is maintained by the community. If you want to get started building assistants with Rasa please check out our latest [documentation here](/content/docs/index.html).

You first have to create a Microsoft app to get credentials. Once you have them you can add these to your `credentials.yml`.

The endpoint URL that Microsoft Bot Framework should send messages to will look like `http://<host>:<port>/webhooks/botframework/webhook`, replacing the host and port with the appropriate values from your running Rasa server.

## Running on Microsoft Bot Framework

Add the Botframework credentials to your `credentials.yml`:

```yaml
botframework:
  app_id: "MICROSOFT_APP_ID"
  app_password: "MICROSOFT_APP_PASSWORD"
```

Restart your Rasa server to make the new channel endpoint available for Microsoft Bot Framework to send messages to.
