Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save expiscornovus/af11ea316c4d2c7fe304b2814a3691d2 to your computer and use it in GitHub Desktop.
Save expiscornovus/af11ea316c4d2c7fe304b2814a3691d2 to your computer and use it in GitHub Desktop.
StarterCreationform_AdaptiveCard.json
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"id": "Title",
"text": "Starter Creation form",
"horizontalAlignment": "Left"
},
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Full Name",
"horizontalAlignment": "Left",
"separator": true
},
{
"type": "Input.Text",
"placeholder": "{acFullName}",
"value": "@{outputs('Get_response_details_-_Response_Id')?['body/r26c954cce18b465e9ea923de096813e0']}",
"style": "text",
"isMultiline": false,
"maxLength": 75,
"id": "acFullName"
},
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Department",
"horizontalAlignment": "Left",
"separator": true
},
{
"type": "Input.Text",
"placeholder": "{acDepartment}",
"style": "text",
"value": @{outputs('Get_response_details_-_Response_Id')?['body/rac6b516777d143eab77ccff314e0fcd1']},
"isMultiline": false,
"maxLength": 75,
"id": "acDepartment"
},
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "Add to the following Security Groups",
"horizontalAlignment": "Left",
"separator": true
},
{
"type": "Input.ChoiceSet",
"id": "acADGroups",
"isMultiSelect": true,
"value": "",
"choices": [
{
"title": "IT Members",
"value": "IT Members"
},
{
"title": "IT Owners",
"value": "IT Owners"
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Create Office 365 Account"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment