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/hire \
-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 |
|---|---|
hire.job.published | Fires when a new requirement/opening record commits to the career page index. |
hire.candidate.submitted | Fires when a candidate record is created or submits a resume file. |
hire.candidate.reviewed | Fires when a submission profile undergoes basic screen sorting. |
hire.submission.moved | Fires when a candidate moves stages inside the hiring pipeline board. |
hire.scorecard.logged | Fires immediately when an interviewer submits their scorecard feedback. |
hire.offer.extended | Fires when an offer letter document request posts to the database. |