Get pipeline metrics

GET
/pipeline

Stage counts for one job. jobId is required: the metric is per-job, and tenancy rides on that job, so another organization's funnel returns 404.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key from Settings > API access, sent as Authorization: Bearer sp_live_.... Send exactly one credential per request; a request carrying both a bearer token and a session cookie is rejected rather than resolved by precedence.

In: header

Query Parameters

jobId*string
timeframeDays?integer

Window for the recent-activity counts. 1-365.

Range1 <= value <= 365
Default30

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/pipeline?jobId=string"
{  "jobId": "string",  "jobTitle": "string",  "totalCandidates": 0,  "activeCandidates": 0,  "stages": [    {      "stage": "string",      "count": 0,      "percentage": 0    }  ],  "recentActivity": {    "newCandidates": 0,    "stageChanges": 0  },  "timeframeDays": 0}

Last updated on