SNOWTools
A developer toolkit for accelerating ServiceNow implementations and integrations. SNOWTools provides a robust Python/Django bridge to interact with ServiceNow data and APIs efficiently, breaking the 'Low Code' ceiling for complex automation.
Key Features
- ServiceNow Data Extraction & Ingestion
- Update Set Management Automation (Batch, Compare, Templates)
- REST API Proxy & Abstraction
- Custom Portal Front-end Integration
- Workflow Automation Accelerators
API Endpoints
| Method | Path | Description |
|---|---|---|
| GET | `/api/snow/tables/{tableName}` | Retrieve data from a ServiceNow table |
| POST | `/api/snow/records/{tableName}` | Create a new record in ServiceNow |
| POST | `/api/snow/updatesets/deploy` | Deploy a ServiceNow update set |
| GET | `/api/snow/incidents/open` | List open incidents |
Usage Example
import requests
# Example interaction
response = requests.get(
url="https://api.arcore.internal/api/snow/tables/{tableName}",
headers={"Authorization": "Bearer <token>"}
)
print(response.json())Tech Stack
Authentication
- •**Header:** `Authorization: Bearer <token>`
- •**Scopes:** RBAC is enforced at the object level via `ArcoreCodex` policies.
Compliance & Security
Compliance
- ✓Auth: OAuth2/Basic Auth handling for SNOW
- ✓Security: Credential masking
Security
- ✓Security: Credential masking
Related Products
Arcor Parkour
CI/CD Orchestration Platform. ArcorParkour provides a universal runner architecture to execute YAML-defined pipelines, providing real-time log streaming, encrypted secret management, and multi-cloud CLI integration for automated delivery. It serves as the primary engine for automating the software delivery lifecycle across the Arcore ecosystem.
Arcore Phantom
Platform engineering tool for creating backend-free, believable demos. ArcorePhantom captures live API traffic, infers entities and routes, and compiles a browser-only runtime so teams can ship portable demos without exposing production systems.
Arcore Foundry
Deterministic, safe, and observable executor runtime for scaffolding and maintenance. ArcoreFoundry separates the Brain (knowledge graph + contracts) from the Hands (DAG executor + transactional VFS) so every change is ordered, diffable, and secure before touching disk.