We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
json
Overview Add a JSON boolean option to the HTTP executor configuration.
JSON
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 #577 (comment)
The text was updated successfully, but these errors were encountered:
@yohamta hi , can i try to work on this issue ?
Sorry, something went wrong.
Hi @halalala222, thank you so much! Yes, please go ahead. Really appreciated.
No branches or pull requests
Overview
Add a
JSON
boolean option to the HTTP executor configuration.This will format the result as standard JSON, including the status code and response headers:
Additional Context
#577 (comment)
The text was updated successfully, but these errors were encountered: