Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Type of parameter. Optional.

Remarks

Name and value arguments are required.

Type parameter is optional. If not specified default value is "GetOrPost".

...

Code Block
languagets
var client = $Rest.Create('http://targetserver');
var request = client.Request();

request.AddParameter('x', 1);
request.AddParameter('y', {
  z : 3
});

// request body as
// {
//    "x" : 1,
//    "y" : {
//        "z" : 3
//    }
// }

var response = request.ExecuteJson();

Remarks

Name and value arguments are required.

Type parameter is optional. If not specified default value is "GetOrPost".

...