Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Developer articles
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Articles

CyberArk Integration with ServiceNow

  ServiceNow CyberArk Integration Steps to follow   The MID Server obtains the credential identifier from the instance, and then uses a customer-provided JAR file to resolve the identifier from the repository into a usable credential. Note: Customer ...

find_real_file.png

Return logged-in user groups using getMyGroups()

Hi All, Today I have found an amazing undocumented API that outputs all logged-in user group sys_id(s). You can use this to reduce the amount of scripting   You can try this in your Background script gs.print(gs.getUser().getMyGroups()) Output :  Re...

find_real_file.png

How to use Automatic Group Member Management

The Application We uploaded our new application Automatic Group Member Management to the ServiceNow Share. The app can be used to handle group memberships automatically based on certain conditions. The conditions can be either based on a user (e.g. D...

find_real_file.png find_real_file.png find_real_file.png

JSON field attribute

Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field   Hi there,   A situation that sounds familiar when working with fields with JSON code: The JSON code hard to read, the code looks unformatted, the structure or errors are...

find_real_file.png find_real_file.png find_real_file.png find_real_file.png

ServiceNow to Azure DevOps Integration Using REST APIs

Hello, ServiceNow and Azure DevOps enthusiasts! In today’s article, I will walk you through how to integrate ServiceNow with Azure DevOps using REST APIs to automatically create work items in Azure DevOps when incidents are raised in ServiceNow. This...

selvarun_0-1739388592511.png selvarun_1-1739388592513.png selvarun_4-1739388702509.png selvarun_2-1739388592516.png
Selva Arun by Mega Sage
  • 15829 Views
  • 11 comments
  • 13 helpfuls

Get Familiar with Agentic Workflows & AI Agent

     We used to design services. Now we’re designing the thinking behind them. With ServiceNow’s AI Agentic Workflows, you're not just setting up automation, you’re training digital coworkers that can plan, reason, and get things done.   This hands-...

Screenshot 2025-08-11 at 14.41.20.png LuisEstefano_1-1755986288719.png LuisEstefano_2-1755986390784.png LuisEstefano_4-1755986654596.png
Luis Estefano by ServiceNow Employee
  • 16881 Views
  • 3 comments
  • 21 helpfuls

Copy Attachments better with Subflow

For the longest time, the go-to method for copying attachments across various records in ServiceNow has been business rules utilising the GlideSysAttachment class. But this approach usually backfires when we try to copy attachments bi-directionally, ...

copy_attachment_subflow_name.png copy_attachment_subflow_properties.png copy_attachment_subflow_inputs.png copy_attachment_subflow_action.png

Get Protected Script Include Code

We can get all the functions created in the protected script include using below code. var instance=new scriptIncludeName(); /**name of script include**/ var list=[]; for(var prop in instance){ gs.info(prop); var temp=instance[prop] instance...

Top Contributors