-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathStart.http
26 lines (20 loc) · 894 Bytes
/
Start.http
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
### Start the HelloName orchestrator function.
### Returns a status message.
POST http://localhost:7071/api/start/HelloNameOrchestrator
Content-Type: application/json
"I ❤ Serverless"
### Start the HelloName orchestrator function with an orchestrator instance id.
### Returns a status message.
POST http://localhost:7071/api/start/HelloNameOrchestrator/{{$guid}}
Content-Type: application/json
"I ❤ Serverless"
### Checks the status of an orchestrator function.
### Update this orchestratorInstanceId so it matches the ID of your
### running orchestrator instance.
@orchestratorInstanceId = e3e0c36565e74020a087cd84cc86bb54
@storageCode = GLoOdgAOebifkr6wfEqmaMSAzrwtRlrSRw7O/gtiarfvo2ofQGmqXQ==
@hubName=DurableDemo
GET http://localhost:7071/runtime/webhooks/durabletask/instances/{{orchestratorInstanceId}}
?taskHub={{hubName}}
&connection=Storage
&code={{storageCode}}