Standardized REST endpoints, signed event webhooks, and Model Context Protocol (MCP) tool routing.
Initiate actions securely in three simple steps. Authenticate requests using Platform-signed delegated JWT tokens.
$ curl -X POST https://api.softknack.com/v1/drive \
-H "Authorization: Bearer <delegated_JWT>" \
-H "Content-Type: application/json" \
-d '{"org_id": "org_01"}'
Ingest events in real time. All webhooks conform to the standard Nexus payload format and contain an HMAC signature key.
| Event Type | Description |
|---|---|
drive.file.uploaded | Fires when a file completes its upload phase and commits to the database. |
drive.file.processed | Fires when compression or WebP optimization pipeline finishes. |
drive.file.shared | Fires when a new presigned URL or public sharing link is requested. |
drive.file.downloaded | Logs a download read trace in the ledger. |
drive.file.archived | Fires when an object is shifted to cold storage (e.g. Glacier). |
drive.file.deleted | Fires when an asset record is scrubbed or marked deleted. |