Hi Folks -
I would like to use the FME Server API to get a list of the Web Connections that a workspace uses. I see that there is an endpoint for GET /repositories/< repository >/items/< item >/parameters , but this doesn't provide details regarding the Web Connections configured for the workspace.
I currently have a query like:
http://domain.com/fmerest/v3/repositories/repo_name/items/workspace_name.fmw/parameters
... and wondering how to change this to get the Web Connection details as well.
In the implementation notes of the endpoint above I see the info below, but I am not sure how to use the create a query using the "Sub-type: Web Connection Parameter"
Sub-type: Web Connection Parameter
parameter {
connectionTypes (array(string]): Connection types of this published parameter,
defaultValue (string): Default value of the published parameter,
description (string): A human-readable description of the published parameter,
excludeConnectionTypes (array model (string) = >'list', 'string', 'object' or 'objectList']: Data type, always 'string', name (string): Unique name of the published parameter, optional (boolean): Whether the parameter is optional or not, type (string) = t'NAMED_CONNECTION']: Web connection published parameter type } Any help is greatly appreciated. Thanks!