Hi there!
I have a path modeled with a paramter (see below for full schema - we can ignore the object model)
- when going to the scenario testing - I have to pass the path paramter as part of the path so I use:
PUT https://xxx/v1/applications/{$.ctx.uuid}
which fails the matching for the contract testing (because now it has a path parameter) which makes me get the following error message:
PUT https://xxxx/v1/applications/${.ctx.uuid} did NOT match any operations in the connected OAS2 specifications.
There is a “query” tab in the input stage - however, no “path parameter” tab - what is the correct way to input the path parameter so that the scenario module can find the appropriate path spec and then do the correct contract testing?
"put": {
"responses": {
"200": {
"description": "",
"schema": {
"type": "object",
"properties": {}
}
}
},
"summary": "Update application",
"description": "Update an application with partial information",
"operationId": "PUT-application",
"tags": [
"Applications"
],
"parameters": [
{
"in": "body",
"name": "body",
"schema": {
"$ref": "./Partner API Models.oas2.yml#/definitions/lead"
}
},
{
"in": "path",
"name": "uuid",
"type": "string",
"required": true
}
]
}