Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Prepare applications for Azure deployment by generating infrastructure code, Dockerfiles, and config files.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/services/logic-apps/triggers.md
1# Logic Apps - Triggers23## HTTP Request45```json6{7"triggers": {8"manual": {9"type": "Request",10"kind": "Http",11"inputs": {12"schema": {13"type": "object",14"properties": {15"orderId": { "type": "string" }16}17}18}19}20}21}22```2324## Recurrence (Schedule)2526```json27{28"triggers": {29"Recurrence": {30"type": "Recurrence",31"recurrence": {32"frequency": "Hour",33"interval": 134}35}36}37}38```3940## Service Bus Queue4142```json43{44"triggers": {45"When_a_message_is_received": {46"type": "ApiConnection",47"inputs": {48"host": {49"connection": {50"name": "@parameters('$connections')['servicebus']['connectionId']"51}52},53"method": "get",54"path": "/@{encodeURIComponent('orders')}/messages/head"55}56}57}58}59```6061## Common Actions6263### HTTP Action6465```json66{67"HTTP": {68"type": "Http",69"inputs": {70"method": "POST",71"uri": "https://api.example.com/orders",72"headers": {73"Content-Type": "application/json"74},75"body": "@triggerBody()"76}77}78}79```8081### Approval Email8283```json84{85"Send_approval_email": {86"type": "ApiConnectionWebhook",87"inputs": {88"host": {89"connection": {90"name": "@parameters('$connections')['office365']['connectionId']"91}92},93"body": {94"NotificationUrl": "@{listCallbackUrl()}",95"Message": {96"To": "[email protected]",97"Subject": "Approval Required",98"Options": "Approve, Reject"99}100},101"path": "/approvalmail/$subscriptions"102}103}104}105```106