{"id":38740015,"url":"https://github.com/vikramarsid/go-ms-teams","last_synced_at":"2026-01-17T11:37:37.168Z","repository":{"id":57562335,"uuid":"330340029","full_name":"vikramarsid/go-ms-teams","owner":"vikramarsid","description":"A Golang module to interface with Miceosoft Teams API","archived":false,"fork":false,"pushed_at":"2021-01-18T02:19:41.000Z","size":17,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-06-20T11:09:52.732Z","etag":null,"topics":["golang","golang-library","microsoft","teams"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vikramarsid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-01-17T07:45:29.000Z","updated_at":"2024-05-20T06:47:21.000Z","dependencies_parsed_at":"2022-09-17T14:03:12.379Z","dependency_job_id":null,"html_url":"https://github.com/vikramarsid/go-ms-teams","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vikramarsid/go-ms-teams","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikramarsid%2Fgo-ms-teams","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikramarsid%2Fgo-ms-teams/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikramarsid%2Fgo-ms-teams/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikramarsid%2Fgo-ms-teams/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vikramarsid","download_url":"https://codeload.github.com/vikramarsid/go-ms-teams/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikramarsid%2Fgo-ms-teams/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28507929,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T10:25:30.148Z","status":"ssl_error","status_checked_at":"2026-01-17T10:25:29.718Z","response_time":85,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["golang","golang-library","microsoft","teams"],"created_at":"2026-01-17T11:37:37.080Z","updated_at":"2026-01-17T11:37:37.143Z","avatar_url":"https://github.com/vikramarsid.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status][travis-image]][travis-url]\n[![Github Tag][githubtag-image]][githubtag-url]\n\n[![Maintainability][codeclimate-image]][codeclimate-url]\n[![codecov][codecov-image]][codecov-url]\n\n[![Go Report Card][goreport-image]][goreport-url]\n[![GoDoc][godoc-image]][godoc-url]\n[![License][license-image]][license-url]\n\n***\n\n# go-ms-teams\n\nA package to send messages to Microsoft Teams\n\n# Usage\n\nTo get the package, execute:\n\n```\ngo get https://github.com/vikramarsid/go-ms-teams\n```\n\nTo import this package, add the following line to your code:\n\n```\nimport \"github.com/vikramarsid/go-ms-teams\"\n```\n\nAnd this is an example of a simple implementation ...\n\n```\nimport (\n\t\"github.com/vikramarsid/go-ms-teams\"\n)\n\nfunc main() {\n\t_ = sendTheMessage()\n}\n\nfunc sendTheMessage() error {\n\t// init the client\n\tpts := Options{\n\t\tTimeout: 60 * time.Second,\n\t\tVerbose: true,\n\t}\n\tmstClient := NewClient(opts)\n\t\n\tmstClient := gomsteams.NewClient()\n\n\t// setup webhook url\n\twebhookUrl := \"https://outlook.office.com/webhook/YOUR_WEBHOOK_URL_OF_TEAMS_CHANNEL\"\n\n\t// setup message card\n\tmsgCard := gomsteams.NewMessageCard()\n\tmsgCard.Title = \"Hello world\"\n\tmsgCard.Text = \"Here are some examples of formatted stuff like \u003cbr\u003e * this list itself  \u003cbr\u003e * **bold** \u003cbr\u003e * *italic* \u003cbr\u003e * ***bolditalic***\"\n\tmsgCard.ThemeColor = \"#DF813D\"\n\n\t// send\n\treturn mstClient.Send(webhookUrl, msgCard)\n}\n```\n\n# \u003ca id=\"links\"\u003e\u003c/a\u003esome useful links\n\n* [Inspiration - Credits to](https://github.com/dasrick/go-teams-notify)\n* [MS Teams - adaptive cards](https://docs.microsoft.com/de-de/outlook/actionable-messages/adaptive-card)\n* [MS Teams - send via connectors](https://docs.microsoft.com/de-de/outlook/actionable-messages/send-via-connectors)\n* [adaptivecards.io](https://adaptivecards.io/designer)\n\n***\n\n[travis-image]: https://travis-ci.org/vikramarsid/go-ms-teams.svg?branch=main\n[travis-url]: https://travis-ci.org/vikramarsid/go-ms-teams\n\n[githubtag-image]: https://img.shields.io/github/tag/vikramarsid/go-ms-teams.svg?style=flat\n[githubtag-url]: https://github.com/vikramarsid/go-ms-teams\n\n[codeclimate-image]: https://api.codeclimate.com/v1/badges/fe69cc992370b3f97d94/maintainability\n[codeclimate-url]: https://codeclimate.com/github/vikramarsid/go-ms-teams/maintainability\n\n[codecov-image]: https://codecov.io/gh/vikramarsid/go-ms-teams/branch/main/graph/badge.svg?token=dSLAzNgptq\n[codecov-url]: https://codecov.io/gh/vikramarsid/go-ms-teams\n\n[goreport-image]: https://goreportcard.com/badge/github.com/vikramarsid/go-ms-teams\n[goreport-url]: https://goreportcard.com/report/github.com/vikramarsid/go-ms-teams\n\n[godoc-image]: https://godoc.org/github.com/vikramarsid/go-ms-teams?status.svg\n[godoc-url]: https://godoc.org/github.com/vikramarsid/go-ms-teams\n\n[license-image]: https://img.shields.io/github/license/vikramarsid/go-ms-teams.svg?style=flat\n[license-url]: https://github.com/vikramarsid/go-ms-teams/blob/master/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikramarsid%2Fgo-ms-teams","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvikramarsid%2Fgo-ms-teams","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikramarsid%2Fgo-ms-teams/lists"}