zefzef aa
zefzef aa

Reputation: 67

Send multiples messages in one request (webhook) in Teams

I'm trying to send multiple message card in same time

When I'm doing a request for only one message with postman, it works for example :

{
  "@type": "MessageCard",
  "@context": "http://schema.org/extensions",
  "summary": "Summary",
  "title": "Connector Card HTML formatting",
  "sections": [
    {
     "text": "This is some <strong>bold</strong> text"
    },
 }

And now, how can I create a another card message in same time?

Upvotes: 2

Views: 958

Answers (2)

Dev
Dev

Reputation: 2464

  • Only a single message card works for me.
  • I really doubt we have an option to send multiple messages card.
  • Unfortunately i failed to failed to see that in Microsoft Documentation either.
  • It looks like "by design" to me. It's confirmed above too.

Upvotes: 1

Mallipriya-MSFT
Mallipriya-MSFT

Reputation: 266

Currently Webhook does not support sending multiple messages in one request. This is by design.

Upvotes: 1

Related Questions