Skip to main content

DX Engine for Generic Webservice

Connector Configuration

Parameter NameParameter PropertyDescription
Base URLbaseUrl
Pathpath
MethodmethodValid values: GET, POST, PUT, DELETE
HeadersbaseHeaders
Query ParametersbaseQueryParams

Component Configuration

Parameter NameParameter PropertyDescription
ConnectionconnectionCodeThe Connection Code of a configured Universal Connector.
Webservice Pathpath
Methodmethod
HeadersbaseHeaders
Query ParametersbaseQueryParams
Query Parameter OptionsqueryParamsOptionsAn onject that described how query paramaters will be stringified in the URL path. See details below.
Bodybody

Query Parameter Options

PropertyDatatypeDescription
encodebooleanURL encode the keys and values. (Default: true)
arrayFormatstringHow array values are rendered. Valid values are: none, bracket, index, comma, separator, bracket-separator, colon-list-separator (Default: none)
skipNullbooleanSkip keys with null as the value. (Default: true)
skipEmptyStringbooleanSkip keys with an empty string as the value. (Default: false)

Array Formats

FormatObjectResult
none{ a: ['b', 'c'] }a[0]=b&a[1]=c&a[2]=d
brackets{ a: ['b', 'c'] }a[]=b&a[]=c
comma{ a: ['b', 'c'] }a=b,c
indices{ a: ['b', 'c'] }a[0]=b&a[1]=c

Component Experience Rule Configuration

Parameter NameParameter PropertyDescription
Headersheaders
Query ParametersqueryParams
Bodybody