This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging directories.
As we described inGetting Started page, an Adaptive Card is a JSON-serialized card object model. This is a JavaScript SDK for generating client-side HTML in the browser.
npm install adaptivecards
<script src="https://unpkg.com/adaptivecards/dist/adaptivecards.js"></script>
// import the moduleimport * as AdaptiveCards from "adaptivecards";// or require itvar AdaptiveCards = require("adaptivecards");// or use the global variable if loaded from CDNAdaptiveCards.renderCard(...);
SeeRender a card for the next steps!