You’ll need to use the extended paths section
What are you trying to achieve? If you want to mock out responses you will need to do this:
...
"ignored": [
{
"path": "/v1/ignored/with_id/{id}",
"method_actions": {
"GET": {
"action": "reply",
"code": 200,
"data": "Hello World\n",
"headers": {
"x-tyk-override": "tyk-override",
}
}
}
}
],
...