Reputation: 869
When trying to create a custom webhook for microsoft teams, I'm trying to define a "themeColor" in my payload that is sent to my connector. For some reason though, microsoft teams doesn't display any theme color on in response in the Teams application, it just looks like this:
This is what my payload looks like, I'm pretty sure it's formatted correctly:
var officeObject = {"title": htmlTitle,
"summary": "Nothing",
"themeColor": "FF0000",
"sections":[
{
"facts": [
{
"name":"Issue:",
"value": issueTitle
},
{
"name":"Description:",
"value": description
}
]
}
]
};
Any idea why microsoft teams wont display a theme?
Upvotes: 0
Views: 1898
Reputation: 261
Microsoft Teams does not currently support themeColor property on connector messages.
Upvotes: 2