-
Notifications
You must be signed in to change notification settings - Fork 7
/
Create-Teams-Meeting.custom.json
61 lines (61 loc) · 1.68 KB
/
Create-Teams-Meeting.custom.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "Create Teams meeting",
"integrationType": "custom-rest-actions",
"actionType": "custom",
"config": {
"request": {
"requestUrlTemplate": "https://graph.microsoft.com/v1.0/users/${input.user}/calendar/events",
"requestType": "POST",
"headers": {
"authorization": "${authResponse.token_type} ${authResponse.access_token}",
"content-type": "application/json"
},
"requestTemplate": "{\n \"start\": {\n \"dateTime\": \"${input.startTime}\",\n \"timeZone\": \"${input.timeZone}\"\n },\n \"end\": {\n \"dateTime\": \"${input.endTime}\",\n \"timeZone\": \"${input.timeZone}\"\n },\n \"isOnlineMeeting\": true,\n \"onlineMeetingProvider\": \"teamsForBusiness\"\n}"
},
"response": {
"translationMap": {},
"translationMapDefaults": {},
"successTemplate": "${rawResult}"
}
},
"contract": {
"input": {
"inputSchema": {
"type": "object",
"properties": {
"user": {
"type": "string"
},
"startTime": {
"type": "string"
},
"endTime": {
"type": "string"
},
"timeZone": {
"type": "string"
}
},
"additionalProperties": true
}
},
"output": {
"successSchema": {
"type": "object",
"properties": {
"onlineMeeting": {
"type": "object",
"properties": {
"joinUrl": {
"type": "string"
}
},
"additionalProperties": true
}
},
"additionalProperties": true
}
}
},
"secure": false
}