mirror of https://github.com/dapr/quickstarts.git
16 lines
366 B
HTTP
16 lines
366 B
HTTP
@apphost=http://localhost:5259
|
|
|
|
### Start the ParentWorkflow workflow
|
|
# @name startWorkflowRequest
|
|
POST {{ apphost }}/start
|
|
Content-Type: application/json
|
|
|
|
[
|
|
"Item 1",
|
|
"Item 2"
|
|
]
|
|
|
|
### Get the workflow status
|
|
@instanceId={{startWorkflowRequest.response.headers.Location}}
|
|
@daprHost=http://localhost:3559
|
|
GET {{ daprHost }}/v1.0/workflows/dapr/{{ instanceId }} |