Я пытаюсь получить разные ответы, передавая разные параметры, но что-то не работает.
Это мой API:
## Question [/info/{question_id}]
A Question object has the following attributes:
+ Parameters
+ question_id: '1' (number, required) - ID of the Question in form of an integer
### View a Questions Detail [GET]
+ Request
+ Header
X-Custom-Header : 1
+ Response 200 (application/json)
{
"id": "1",
"name": "Marco"
}
+ Request
+ Header
X-Custom-Header : 2
+ Response 200 (application/json)
{
"id: "2",
"name": "Lucas"
}
Но при вызове /info/1 или /info/2 ответ всегда один и тот же:
{
"id": "1",
"name": "Marco"
}
Что не так?
спасибо