This plug-in is deprecated, unmaintained and no longer recommended for use. Refactor applications utilizing the functionality of this component to use alternatives. The functionality is available in Appian (without a plug-in) using the Integration Object.
Contains multiple Smart Services and Custom Functions which allow you to send an HTTP Request to an endpoint.
Supported request types are:
Examples use cases include:
Let me give examples:
For the function:
httpgetwithscs(
endpoint:"https://api.someendpoint.com/v1/processes"
scsKey: "scsKeyFromTheTPC"
)
The above function errors out without any exception text.
For the smart service "Send Http Request With SCS"
Endpoint: "https://api.someendpoint.com/v1/processes"
Method: "GET"
Secure Cred Store Key: "scsKeyFromTheTPC"
The above smart service gives a 401 error.
I have added the smart service to the list of smart services that can access the TPC.
Am I missing anything here?
akshaiv138 It seems like the issue is with the source code which we took for enhancement. But I can provide you with the fix. The function httpgetwithscs requires endpoint, paramNames, paramValues, headerNames and headerValues parameters. So you can send {} (null) to the other required parameters than endpoint.For example:
endpoint: "">api.someendpoint.com/.../processes",
paramNames: {}, paramValues: {}, headerNames: {}, headerValues: {},