How to find a Declarative Action's Sys ID from the browser console<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Generally, finding the sys_id of an UI Action is extremely easy. It can be found just by pointing to the element on the browser developer tools and the element itself would have the Sys ID as an attribute. However, for Declarative action, that method does not work, which leads us trying to find the Declarative action by name. In most situations, we would run into multiple declarative actions with the same name and try to rename them to see which one is actually on the affected page. Here is how you can avoid all that extra work - Open the Developer Tools of the browser Use the element selector to select one of the buttonsThen go to their parent until you find one of the components below - sn-record-list-declarative-actions-wrapper (Lists)sn-form-internal-uiactionbar (Forms)sn-playbook-card-actions (Playbook)sn-declarative-field-action-renderer (Reference Fields) Select the element (which would be one of the components above)Run the following command on the browser console $0.getProperties() After this, you will find an output object, which you can open and browse through to find all Declarative Actions present within it. Please refer to the screenshot for an example - This above example shows the sys_id of the "New" button on a List view from CSM/FSM Configurable Workspace. The sys_id is highlighted in the screenshot.