Dziadzia
10/15/2024, 7:50 AM"request": {
> "method": "GET",
> "urlPathTemplate": "/v1/orders/{orderId}{?name}",
> "pathParameters" : {
> "orderId" : {
> "equalTo" : "RNDTRS"
> }
> },
> "queryParameters" : {
> "name" : {
> "equalTo":"testuser"
> }
> }
> },
But it is working when I change pathParameters:
> "pathParameters" : {
> "orderId" : {
> "equalTo" : "RNDTR"
> }
> },
Looks like the last letter in last path parameter is cutted/removed.
Am I correct that this is a bug or my urlPathTemplate is wrong?Rafe Arnold
10/15/2024, 10:18 AMurlPathTemplate
field does not need the {?name}
part. you can remove that and it should behave as you expect