Handle case in Integration when user not pass query parameter
Summary:
Hi, We have an issue when a user does not pass the query parameter in the REST URL then integration should through this error :
valid rest URL : https://abc.com/ic/api/integration/v1/flows/rest/test/1.0/?parameter=1234
Invalid URL : https://abc.com/ic/api/integration/v1/flows/rest/test/1.0/ ---> In this case integration should through the below error:
Expected Error Response:
{
"timestamp": "2022-11-18 17:02:00",
"path": "/v1/flows/rest/test/1.0/",
"status": 400,
"error": "Bad Request",
"requestId": "87666778"
}
0