Hi,
I have created a function in my integration projection.
I have one parameter in this function of datatype number.
To trigger this function’s endpoint, I have to pass the parameter like this -
https://host/int/ifsapplications/projection/v1/IntegrationService.svc/MyFunction(Param=125)
But I don’t want to pass the parameter like that, I want to pass query string and fetch the value of each key/value pair of the query string.
Since, OData does support query string in Service Operations,
https://www.odata.org/documentation/odata-version-2-0/uri-conventions/#CustomerQueryOptions
I don’t know how to do this in IFS?
So, I want to trigger the endpoint like this -
https://host/int/ifsapplications/projection/v1/IntegrationService.svc/MyFunction?Param=125
Thanks in advance,
Rohit.