XML data into RSS feed

Vinay49
Tera Expert
    var end_point = rss_feed+ "";
    var r = new sn_ws.RESTMessageV2();
    r.setEndpoint(end_point);
    r.setHttpMethod("GET");
    r.setRequestHeader("Accept", "application/json");
    var response = r.execute();
    var responseBody = response.getBody();
    var httpStatus = response.getStatusCode();
    gs.print(httpStatus);
    gs.print('JSON Response Body: \n\n' + responseBody);

We received an HTML answer from the public portal using this code.
Is it possible to turn this data and statistics into a custom ServiceNow table?

I am aware that the "GRC: Regulatory Change Management integration with RSS Feeds" plugin in ServiceNow allows us to obtain the RSS feed. But because it's large and has several extras installed that we don't need, we're attempting to get this without the plugin.
0 REPLIES 0