-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogicAppCode.txt
More file actions
30 lines (30 loc) · 886 Bytes
/
LogicAppCode.txt
File metadata and controls
30 lines (30 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2015-08-01-preview/workflowdefinition.json#",
"actions": {
"Http": {
"conditions": [],
"inputs": {
"body": "\"Load\"=",
"headers": {
"Authorization": "inserttokenhere",
"Content-Type": "application/json"
},
"method": "POST",
"uri": "http://XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX.azurewebsites.net/api/DataLoad"
},
"type": "Http"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"parameters": {},
"triggers": {
"recurrence": {
"recurrence": {
"frequency": "Hour",
"interval": 1
},
"type": "Recurrence"
}
}
}