Skip to content

Add json bool configuration option to HTTP executor #578

Open
@yottahmd

Description

@yottahmd

Overview
Add a JSON boolean option to the HTTP executor configuration.

steps:
  - name: a step
    command: GET https://xxx
    executor:
      type: http
      config:
        json: true
    output: DATA1

This will format the result as standard JSON, including the status code and response headers:

{
  "status_code": 200,
  "headers": [
    "xxx": "yyy"
  ],
  "body": {
    "some_field": "some_value"
  }
}

Additional Context
https://github.com/dagu-dev/dagu/discussions/577#discussion-6755295

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions