ServerResponse.write(options)

Note:

The content in this help topic pertains to SuiteScript 2.0.

Method Description

Writes information (text, xml, html) to the response.

Note:

This method accepts only strings. To pass in a file, you can use ServerResponse.writeFile(options).

Returns

void

Supported Script Types

Server scripts

For more information, see SuiteScript 2.x Script Types.

Governance

None

Module

N/https Module

Since

2015.2

Parameters
Note:

The options parameter is a JavaScript object.

Parameter

Type

Required / Optional

Description

Since

options.output

string

required

The string being written.

2015.2

Errors

Error Code

Message

Thrown If

SSS_MISSING_REQD_ARGUMENT

Missing a required argument: {param name}

The options.output parameter is not specified.

WRONG_PARAMETER_TYPE

{param name}

The value input for options.output is not a string.

Syntax
Important:

The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/https Module Script Samples.

          // Add additional code 
...
serverResponse.write({
    output: 'Hello World'
});
...
// Add additional code 

        

Related Topics

https.ServerResponse
N/https Module
SuiteScript 2.x Modules
SuiteScript 2.x

General Notices