Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

https.post(options)

{https}.post({body: {string | Object*},url: {string*},credentials: {string[]},headers: {Object}})

N/https Module
https.post()
Method Description: Sends an HTTPS POST 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.
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.post(options)

Example:

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

var myresponse_body = response.body; // see https.ClientResponse.body
var myresponse_code = response.code; // see https.ClientResponse.code
var myresponse_headers = response.headers; // see https.Clientresponse.headers
//...
// Add additional code

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