Skip to content
Daniele Linguaglossa edited this page Jan 8, 2018 · 1 revision

Param

Param is an enum-like class and it's used during the creation of a parameter, it's used to indicate the position of the parameter inside the request (Body, Url, Header)

Example

Add an URL parameter

function test(base_request) {
  Utils.addParameter("name", "value", Param.POSITION_URL, base_request);
}

Enum

Below the list of available properties:

  • POSITION_URL
  • POSITION_BODY
  • POSITION_HEADER

Related Topics

Clone this wiki locally