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/sign \
-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 |
|---|---|
signature_request.created | Fires when a new request is initialized via API. |
signature_request.sent | Fires when signing links are generated and dispatched. |
signature_request.viewed | Fires when a recipient opens the signing portal link. |
signature_request.signed | Fires immediately when the final signature field commits. |
signature_request.declined | Fires if a recipient explicitly rejects the signature request. |
signature_request.reminded | Fires when an auto-reminder notification is dispatched. |