You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This snippet enables the backup of critical table data (such as task or incident records) to an external storage solution. It’s a valuable tool for developers looking to ensure redundancy and backup for sensitive data within ServiceNow.
3
+
4
+
# How It Works
5
+
- Data Extraction: Collects key record fields (such as `sys_id`, `number`, `short_description`) from `current`.
6
+
- API Call: Sends a `POST` request with record data to an external backup endpoint.
7
+
- Logging: Outputs API response for monitoring.
8
+
9
+
# Implementation
10
+
1. Update the `setEndpoint` URL to match your backup API endpoint.
11
+
2. Modify the `recordData` with table data structure as needed.
12
+
3. Ensure the Business Rule is triggered on the appropriate conditions (e.g., on record insert/update) in the target table.
0 commit comments