mirror of https://github.com/dapr/quickstarts.git
12 lines
320 B
HTTP
12 lines
320 B
HTTP
@apphost=http://localhost:5257
|
|
|
|
### Start the Monitor workflow
|
|
# @name startWorkflowRequest
|
|
@counter=0
|
|
POST {{ apphost }}/start/{{counter}}
|
|
|
|
|
|
### Get the workflow status
|
|
@instanceId={{startWorkflowRequest.response.headers.Location}}
|
|
@daprHost=http://localhost:3557
|
|
GET {{ daprHost }}/v1.0/workflows/dapr/{{ instanceId }} |