Ranks “best next actions” for an incoming ticket/incident using the VectorPrime Decision Kernel (deterministic + auditable), then returns a clean JSON result you can route to Slack, a backlog tool, or email.
Pricing note: Template is free. VectorPrime API requires a user-provided API key (free usage up to a limit; paid plans beyond that).
Use this workflow when you already have a ticket/incident AND a short list of candidate actions, and you want a consistent, explainable “what should we do first?” ranking.
Examples:
A structured JSON response including:
vp_payload/v1/kernel/rankAfter importing this template, your webhook URL will be different for each workspace:
In n8n → Credentials → create/select Header Auth:
AuthorizationBearer YOUR_VECTORPRIME_API_KEYThen open VectorPrime Rank (HTTP) and select that credential.
✅ Secrets are NOT stored in this template. Each user supplies their own key via Credentials.
This workflow expects:
decision_id (string)prompt (string)options (array of objects)options must be a REAL JSON array, like:
[
{ "id": "a", "label": "Option A" },
{ "id": "b", "label": "Option B" }
]
If you send fewer than 2 options, the workflow responds with:
{
"decision_id": "REQ-1007",
"prompt": "Customer cannot login",
"options": [
{ "id": "restart", "label": "Restart auth service" },
{ "id": "rollback", "label": "Rollback last deploy" }
]
}