mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):
- brain/ LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
dispatch, A51 channels, and the OSINT cluster
- knowledge/ LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
MITRE ATT&CK data
- reference/ defensive threat-reference (C3, shhbruh doc) + AdaYaml parser
License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.
Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.
https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
44 lines
2.0 KiB
Markdown
44 lines
2.0 KiB
Markdown
# API Reference: Entitlement Review with SailPoint IdentityIQ
|
|
|
|
## SailPoint IdentityIQ REST API
|
|
|
|
| Endpoint | Method | Description |
|
|
|----------|--------|-------------|
|
|
| `/identityiq/scim/v2/Users` | GET | List identities with entitlements and roles |
|
|
| `/identityiq/scim/v2/Users/{id}` | GET | Get identity details including accounts and entitlements |
|
|
| `/identityiq/scim/v2/Certifications` | GET | List certification campaigns with filter support |
|
|
| `/identityiq/scim/v2/Certifications/{id}/items` | GET | Get certification items for a campaign |
|
|
| `/identityiq/rest/certifications/{id}/statistics` | GET | Retrieve campaign completion statistics |
|
|
| `/identityiq/rest/identities/{id}/policyViolations` | GET | Check SOD policy violations for an identity |
|
|
| `/identityiq/rest/certifications/{id}/items/{itemId}` | POST | Submit approve/revoke decision on a cert item |
|
|
|
|
## Authentication
|
|
|
|
SailPoint IIQ REST API uses HTTP Basic Authentication. All requests require `Content-Type: application/json`.
|
|
|
|
```
|
|
Authorization: Basic base64(username:password)
|
|
```
|
|
|
|
## Key Parameters
|
|
|
|
| Parameter | Type | Used In | Description |
|
|
|-----------|------|---------|-------------|
|
|
| `filter` | string | GET /Certifications | SCIM filter expression (e.g., `phase eq "Active"`) |
|
|
| `attributes` | string | GET /Users/{id} | Comma-separated attributes to include |
|
|
| `decision` | string | POST /items/{id} | Certification decision: `Approve`, `Revoke`, `Mitigate` |
|
|
| `comments` | string | POST /items/{id} | Reviewer comments for audit trail |
|
|
|
|
## Python Libraries
|
|
|
|
| Library | Version | Purpose |
|
|
|---------|---------|---------|
|
|
| `requests` | >=2.28 | HTTP client for SailPoint REST API calls |
|
|
|
|
## References
|
|
|
|
- SailPoint IdentityIQ REST API Guide: https://documentation.sailpoint.com/identityiq/
|
|
- SailPoint SCIM 2.0 API: https://documentation.sailpoint.com/identityiq/help/scimrest/
|
|
- SailPoint Certification API: https://community.sailpoint.com/
|
|
- SOD Policy Configuration: https://documentation.sailpoint.com/identityiq/help/policies/
|