Files
api-meditation/survey-question/update.bru
T
2026-06-01 14:30:20 +03:30

42 lines
491 B
Plaintext

meta {
name: update
type: http
seq: 3
}
put {
url: {{baseUrl}}/survey-questions/:id
body: json
auth: inherit
}
params:path {
id: 2
}
body:json {
{
"options": [
{
"label": "Laravel"
},
{
"label": "React.js"
},
{
"label": "Vue.js"
},
{
"label": "Django"
}
]
}
}
settings {
encodeUrl: true
timeout: 0
}