Skip to content

Instantly share code, notes, and snippets.

@gszr
Created March 12, 2025 17:43
Show Gist options
  • Save gszr/1100adf6de5205615a720954a2e8091a to your computer and use it in GitHub Desktop.
Save gszr/1100adf6de5205615a720954a2e8091a to your computer and use it in GitHub Desktop.
{
"name": "request-callout",
"config": {
"callouts": [
{
"name": "callout1",
"request": {
"url": "http://httpbin.org/anything",
"method": "GET",
"query": {
"custom": {
"id": "$(kong.request.get_body().id)"
}
}
},
"response": {
"body": {
"decode": true
}
}
}
],
"upstream": {
"body": {
"forward": false,
"custom": {
"id": "$(callouts.callout1.response.body.args.id)"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment