Skip to main content

REST attachment


var sys_attach_gr=new GlideRecord('sys_attachment');
if (sys_attach_gr.get('sys_id', 'fb2890fddbef0700f60fe2e15b9619c9')){

 var attachmentMessage = new sn_ws.RESTMessageV2();
 attachmentMessage.setHttpMethod("post");
 attachmentMessage.setBasicAuth('smithr', 'Beethoven1');
 attachmentMessage.setEndpoint("https://mitchellsbutlersdev.service-now.com/api/now/attachment/file");
 attachmentMessage.setQueryParameter("table_name", "incident");
 attachmentMessage.setQueryParameter("table_sys_id", "2f96bf2637230f408ca1138943990e2a");
 attachmentMessage.setQueryParameter("file_name", sys_attach_gr.file_name);
 attachmentMessage.setRequestHeader("Content-Type", sys_attach_gr.content_type);
 attachmentMessage.setRequestHeader("Accept", "application/json");
 attachmentMessage.setRequestBodyFromAttachment(sys_attach_gr.sys_id);
 var response = attachmentMessage.execute();
 var responseBody = response.getBody();
 httpStatus = response.getStatusCode();

 gs.print(httpStatus + ':: ' + responseBody );

}

Comments

Popular posts from this blog

ServiceNow check for null or nil or empty (or not)

Haven't tested these all recently within global/local scopes, so feel free to have a play! option 1 use an encoded query embedded in the GlideRecord , e.g.  var grProf = new GlideRecord ( 'x_cls_clear_skye_i_profile' ); grProf . addQuery ( 'status=1^ owner=NULL ' ); grProf . query (); even better use the glideRecord  addNotNullQuery or addNullQuery option 2 JSUtil.nil / notNil (this might be the most powerful. See this link ) example: if ( current . operation () == 'insert' && JSUtil . notNil ( current . parent ) && ! current . work_effort . nil ())  option 3 there might be times when you need to get inside the GlideRecord and perform the check there, for example if the code goes down 2 optional routes depending on null / not null can use gs.nil : var grAppr = new GlideRecord ( 'sysapproval_approver' ); var grUser = new GlideRecord ( 'sys_user' ); if ( grUser . get ( 'sys_id' , current . approver )){

Get URL Parameter - server side script (portal or classic UI)

Classic UI : var sURL_editparam = gs . action . getGlideURI (). getMap (). get ( ' sysparm_aparameter ' ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); } Portal : var sURL_editparam = $sp . getParameter ( " sysparm_aparameter " ); if ( sURL_editparam == 'true' ) { gs . addInfoMessage ( 'parameter passed ); }