How to retrieve the Request Body in an SFCC Controller easily

Custom endpoints are a way to create personalised solutions that meet the needs of a particular business. If we are working with POST or PUT requests, developers need to be able to access and handle the submitted data within an SFCC controller. But where can we find this request body?

TLDR;

To get the request body in an SFCC controller, use the following script:

				
					request.httpParameterMap.requestBodyAsString
				
			

This attribute will provide a string representation of the request data, which can then be parsed and processed.

Understanding SFCC Controllers and Body

In the context of SFCC, a controller is a script module that takes care of processing various HTTP requests and generating suitable responses. Controllers are typically used to implement server-side logic for various user interactions, such as adding items to the cart or processing payments.

The request body is part of an HTTP request containing the client’s data to the server. In the case of an e-commerce platform, this might include information such as item details or a query.

Accessing submitted data in an SFCC Controller

To access the body in an SFCC controller, you must use the “request” object provided by the controller’s execution context. This object represents the incoming HTTP request and provides various attributes and methods for accessing request data.

The “request.httpParameterMap” attribute is a collection of all input parameters received in the HTTP request. This includes query parameters, form parameters, and the request body. You can use the “requestBodyAsString” attribute to access the request body. This attribute provides a string representation of the request body, allowing you to parse and process the data as needed.

Here’s an example of how to use the “request.httpParameterMap.requestBodyAsString” attribute to access the request body inside a basic SFCC controller (without the SFRA wrapping):

				
					var ISML = require('dw/template/ISML');

function start() {
    var requestBody = request.httpParameterMap.requestBodyAsString;

    // Process the request body here

    // Render the response
    ISML.renderTemplate('mytemplate', {
        requestBody: requestBody
    });
}

exports.Start = start;
				
			

The “requestBodyAsString” attribute gets the request body as a string (what’s in a name). You can then process the value as needed, such as parsing it into a JSON object or using it to perform server-side validation.

Parsing the data

In many cases, the request body will be a JSON string that needs to be parsed into a JavaScript object. You can use the “JSON.parse()” method to do this.

Here’s an example of how to parse these requests into a JSON object:

				
					var requestBody = request.httpParameterMap.requestBodyAsString;
var requestBodyJson = JSON.parse(requestBody);
				
			

Handling Errors

security check border api security

When working with data being submitted to the server, handling any errors that might occur, such as malformed JSON or an invalid request, is essential. You can use a try-catch block to catch any exception thrown during the processing of the request body. 

Here’s a basic example of how to handle errors:

				
					var requestBody = request.httpParameterMap.requestBodyAsString;
var requestBodyJson;

try {
    requestBodyJson = JSON.parse(requestBody);
} catch (error) {
    // Handle the error, such as sending an error response or logging the error
}
				
			

Conclusion

API-first development has been long-awaited in the Salesforce B2C Commerce Cloud world, but that time is finally upon us. By creating custom endpoints, either with the OCAPI (hopefully soon the SCAPI) or with custom controllers, we can add new features to Headless storefronts such as the Composable Storefront. And in a transactional context, we will need that request body!

JSON

Table of Contents

Facebook
Twitter
LinkedIn