Modules

filter

 

Objects/Functions

module (N/https)

SuiteScript 2.0

ClientResponse.body

// Please search https://system.netsuite.com/app/help/helpcenter.nl?search=ClientResponse.body for more information.

N/https Module
ClientResponse.body
Property Description: The client response body.
Type: string (read-only)
Supported Script Types: Server scripts For more information, see SuiteScript 2.0 Script Types.
Module: N/https Module
Since: 2015.2
Search NetSuite - https://system.netsuite.com/app/help/helpcenter.nl?search=ClientResponse.body

Example:

// Code Example 1
// Add additional code
//...
var response = https.get({
url: 'https://www.testwebsite.com'
});
log.debug({
title: 'Client Response Body',
details: response.body
});
//...
// Add additional code

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