const data = {content: 'hello world',};async function handleRequest(request) {// Convert the JSON object to the String format.const result = JSON.stringify(data, null, 2);return new Response(result, {headers: {'content-type': 'application/json; charset=UTF-8',},});}addEventListener('fetch', event => {return event.respondWith(handleRequest(event.request));});

Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback