Recordless RESTMessageV2 example

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 1분
  • You can use the RESTMessageV2() constructor with no parameters to define a REST message entirely in the script.

    When using this constructor you must provide an endpoint and HTTP method. In this example, the script creates an empty REST message and sets the values needed to insert an incident record.

    var restMessage = new sn_ws.RESTMessageV2();
    restMessage.setBasicAuth("admin", "admin");
    restMessage.setHttpMethod("post");
    restMessage.setEndpoint("http://<instance>.service-now.com/api/now/table/incident");
    restMessage.setRequestBody("{\"short_description\" : \"Test incident\"}");
    var response = restMessage.execute();