Teams chat
dadosfera.services.teams_chat.send_notification
send_notification(teams_webhook_url, message_title, message_body)
Send a notification message to Microsoft Teams using a webhook URL.
This function sends a notification message to a Microsoft Teams channel using the Teams webhook API. It formats the message using a predefined template and handles the HTTP request and potential errors.
PARAMETER | DESCRIPTION |
---|---|
teams_webhook_url
|
The webhook URL for the Microsoft Teams channel. Must be a valid URL obtained from Teams channel configuration. Example: "https://outlook.office.com/webhook/..."
TYPE:
|
message_title
|
The title of the notification message. Will be displayed prominently in the Teams notification. Should be concise and descriptive.
TYPE:
|
message_body
|
The main content of the notification message. Can include formatted text according to Teams message card format. Will be displayed in the body of the Teams notification.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
None
|
None |
RAISES | DESCRIPTION |
---|---|
RequestException
|
When the HTTP request to Teams webhook fails. Contains details about the failure in the exception message. Includes response status code and response text in the error log. |
Example
webhook_url = "https://outlook.office.com/webhook/..." send_notification( ... teams_webhook_url=webhook_url, ... message_title="Deployment Complete", ... message_body="The application was successfully deployed to production." ... )
Notes
- The function uses a predefined MESSAGE_TEMPLATE which should follow the Microsoft Teams message card format
- The webhook URL must be configured in the Teams channel beforehand
- Network connectivity is required to send notifications
- The function is synchronous and will block until the request completes
See Also
- Microsoft Teams Webhook Documentation: https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook
- Teams Message Card Format: https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using#example-of-a-message-card
Source code in dadosfera/services/teams_chat.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|