Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cdngmnks/adaptive-cards-azure-functions-dotnet

A simple Azure function returning an Adaptive Card as HTML using the .NET SDK.
https://github.com/cdngmnks/adaptive-cards-azure-functions-dotnet

adaptive-cards azure-functions

Last synced: about 1 month ago
JSON representation

A simple Azure function returning an Adaptive Card as HTML using the .NET SDK.

Awesome Lists containing this project

README

        

# Adaptive Cards - Azure Functions (.NET)

## adaptiveCardRenderer

Function returning an Adaptive Card rendered as HTML, using the [Adaptive Card .NET HTML SDK](https://docs.microsoft.com/en-us/adaptive-cards/sdk/rendering-cards/net-html/getting-started).

example request:
```javascript
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0",
"hideOriginalBody": true,
"body": [
{
"type": "TextBlock",
"text": "Hello World!",
"wrap": true
}
]
}
```

example response:
```html





```

# References
* [Adaptive Cards](https://adaptivecards.io/)
* [Adaptive Card .NET HTML SDK](https://docs.microsoft.com/en-us/adaptive-cards/sdk/rendering-cards/net-html/getting-started)
* [Create C# function in Azure using VS Code](https://docs.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-csharp)
* [Azure Functions JavaScript developer guide](https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-node)

# Issues
To view or log issues, see [issues](https://github.com/cdngmnks/adaptive-cards-renderer-azure-function/issues).

# License
Copyright (c) codingmonkeys doo. All Rights Reserved. Licensed under the [MIT license](https://github.com/cdngmnks/adaptive-cards-renderer-azure-function/blob/master/LICENSE).