1 answer
Hi Aruna,You can add the parameter in the URL:String URL = "http://xxx.com?deleteId=" + recordId;request.setEndpoint(URL);OR String endpoint = 'http://www.example.com/service';String body = 'deleteId='+deleteId+'¶m2=param2¶m3=param3';HttpRequest req = new HttpRequest();req.setEndpoint(endpoint);req.setMethod('POST');req.setbody(body);Http http = new Http();HTTPResponse response = http.send(req);Thanks