Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

https.delete(options)

{https}.delete({url: {string*},headers: {Object}})

N/https Module
https.delete()
Method Description: Sends an HTTPS DELETE request. If negotiating a connection to the destination server exceeds 5 seconds, a connection timeout occurs. If transferring a payload to the server exceeds 45 seconds, a request timeout occurs. This method does not include an options.body parameter. Postdata is not required when the HTTPS method is a DELETE request.
Returns: https.ClientResponse or https.ServerResponse
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Governance: 10 units
Module: N/https Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=https.delete(options)

Example:

// Code Example 1
// Add additional code
//...
var headerObj = {
name: 'Accept-Language',
value: 'en-us'
};
var response = https.delete({
url: 'https://www.mytestwebsite.com',
headers: headerObj
});
//...
// Add additional code

//SOURCE: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_4567631039.html