List jobs

GET
/jobs

The organization's jobs, paginated at the database layer.

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

pageNumber?integer

1-based page number.

Range1 <= value
Default1
pageSize?integer

Page size. Clamped server-side, so a very large value returns the maximum.

Range1 <= value
Default20
status?string

Value in

  • "DRAFT"
  • "ACTIVE"
  • "PAUSED"
  • "COMPLETED"
search?string

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/jobs"
{  "currentPage": 0,  "pageSize": 0,  "totalCount": 0,  "data": [    {      "id": "string",      "title": "string",      "status": "string",      "companyId": "string",      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z",      "candidateCount": 0    }  ]}

Last updated on