I have the below .json under mappings folder
{ "request":
{
"urlPathPattern": "abc/search",
"method": "GET",
"queryParameters":{
"abc":{
"equalTo":"05064"
},
"type":{
"equalTo":"detailed"
},
"updatedAfter":{
"equalTo":"2017-08-20T05:00:00Z"
},
"updatedBefore":{
"equalTo":"2017-08-23T22:18:54Z"
}
}
},
"response": {
"status": 200,
"headers":
{
"Content-Type" : "application/json"
},
"bodyFileName": "abc_1.json"
}
}
But whenever i hit the below endpoint
I am getting 404 error. Can someone point where I am going wrong?
You need a leading slash in the
urlPathPattern
attribute value:"urlPathPattern": "/abc/search",