Skip to content

Instantly share code, notes, and snippets.

@gallynaut
Last active February 7, 2023 16:36
Show Gist options
  • Save gallynaut/cff0bbfe5bf0646eb139c5839c43a558 to your computer and use it in GitHub Desktop.
Save gallynaut/cff0bbfe5bf0646eb139c5839c43a558 to your computer and use it in GitHub Desktop.
HttpTask w/ Headers
{
"tasks": [
{
"httpTask": {
"url": "https://mywebsite.org/path",
"method": "METHOD_POST",
"headers": [
{
"key": "MY_HEADER_KEY",
"value": "MY_HEADER_VALUE"
}
],
"body": "{\"MY_BODY_KEY\":\"MY_BODY_VALUE\"}"
}
},
{
"jsonParseTask": {
"path": "$.value"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment