SK Drive Devs

Integrate SK Drive into your codebase

Standardized REST endpoints, signed event webhooks, and Model Context Protocol (MCP) tool routing.

fig 01 · architecture topology integration Your Application Client sk-backbone-api Gateway sk-drive-api Core Service

Quickstart Integration

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"}'
        
Event System

Webhook Subscription Catalog

Ingest events in real time. All webhooks conform to the standard Nexus payload format and contain an HMAC signature key.

Event TypeDescription
drive.file.uploadedFires when a file completes its upload phase and commits to the database.
drive.file.processedFires when compression or WebP optimization pipeline finishes.
drive.file.sharedFires when a new presigned URL or public sharing link is requested.
drive.file.downloadedLogs a download read trace in the ledger.
drive.file.archivedFires when an object is shifted to cold storage (e.g. Glacier).
drive.file.deletedFires when an asset record is scrubbed or marked deleted.