Form URL Data

You can use the JadeRestRequest class addFormUrlData method to add key/value pairs to the HTTP request body in the format required for the application/x‑www‑form‑urlencoded HTTP content-type, as follows.

request.dataFormat := JadeRestRequest.DataFormat_FormUrlEncoding;
request.addFormUrlData("name", name);
request.addFormUrlData("status", status);