How to override API request body using Javascript
Rohan Mathur
February 17, 2025
1MIN READ
Learn how to override API request bodies using Javascript for testing and development. Use Requestly to easily modify request payloads

Introduction
Overriding HTTP request payload is a process of updating the request data/body sent by client to your API server. We can achieve this by using Requestly’s Modify Request body rule.
Use-cases
- Testing different edge cases: You may modify an API request payload to include an invalid or unsupported field. The server will likely reject the API request and return an error message.
- Primarily used in sending additional data in request payload to the API server: There might be situations where additional data needs to be sent in request payload to the API server when making a POST or PUT request.
- Modifying GraphQL Queries: GraphQL queries can be modified by modifying the request body of the request. This can be done by changing the query string or variables in the request body.
Overriding HTTP request payload using Javascript
Let’s see an example for modifying API request body on https://www.agoda.com/en-in/.
- Install the browser extension.
- Goto Requestly and create a new Modify Request Body rule.
Screen Recording 2023-12-13 at 2.01.08 PM.mov - Specify the URL condition and enter
/GetTopDestinations
. - Select Programmatic (JavaScript) option to modify the request body using JavaScript code. Update the
requestType
for top destinations request from “International” to “Domestic”.
How to test if the request body was modified?
There are multiple ways to validate when a rule is successfully applied on a page. You can check out the documentation here.
To check whether the request body is modified, you can also inspect the HTTP request body in Chrome DevTools. You should see the overridden body is sent to the server.
Learn more
Written by
Rohan Mathur
Rohan has been a valuable member of our team as a frontend developer for the past year. His expertise in modern web technologies and commitment to crafting user-friendly interfaces have significantly contributed to our projects. Rohan’s collaborative approach and problem-solving skills have made him a key player in developing innovative web solutions.
Contents
Subscribe for latest updates
Share this article
Related posts

API Simulation: Definition, Benefits, and Use Cases
Learn what API simulation is and how it differs from mocking and stubbing. See when to use it, where it fits in QA workflows, and the mistakes to avoid.
Rohit Rajpal
September 9, 2025

What is API Virtualization: A Complete Guide for QAs
Learn what API virtualization is, how it works, when to use it, and how it compares to mocks, stubs, and fakes with real examples and use cases.
Rohit Rajpal
September 9, 2025

Understanding HTTP Versions for API Testing and Debugging
A complete guide to understanding HTTP versions, their core features, and key issues testers must validate to ensure API reliability and performance.
Rohit Rajpal
September 9, 2025