swf-runtime 1.0.0-alpha9

Runtime engine for Serverless Workflow DSL — execute, validate, and orchestrate workflows
Documentation
document:
  dsl: 1.0.0-alpha1
  namespace: test
  name: call-http-with-response
  version: 1.0.0
do:
  - tryGetPet:
      try:
        - getPet:
            call: http
            with:
              headers:
                content-type: application/json
              method: get
              endpoint: 
                uri: http://localhost:9876/pets/{petId}
      catch:
        errors:
          with:
            type: https://serverlessworkflow.io/spec/1.0.0/errors/communication
            status: 404