Files
bruno/packages/bruno-lang/v2/tests/settings/fixtures/settings-all-options.json
Pooja 0c30357b01 feat: add redirect and timeout in request settings (#5672)
* feat: add redirect and timeout in request settings
2025-10-08 20:00:37 +05:30

28 lines
478 B
JSON

{
"meta": {
"name": "Settings All Options Test",
"type": "http",
"seq": "3"
},
"http": {
"method": "put",
"url": "https://api.example.com/all-options"
},
"headers": [
{
"name": "content-type",
"value": "application/json",
"enabled": true
}
],
"body": {
"json": "{\n \"test\": \"data\"\n}"
},
"settings": {
"encodeUrl": true,
"followRedirects": false,
"maxRedirects": 0,
"timeout": 60000
}
}