Open
Description
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