recruiter.createJob
Create a job-posting DRAFT together with a brand-new hiring project, project_name is REQUIRED; description must be >= 200 characters.
Prerequisites
- A Curviate API key, passed as
apiKeywhen you construct the client. Authentication and accounts shows how to create one. - A connected LinkedIn account. This resource is account-scoped: the
account_idis injected automatically by the account-scoped accessor, so you pass it once tocurviate.account(...)and every call below inherits it. Authentication and accounts covers connecting one, and accounts.list returns theaccount_idof each account already connected. - Requires the Recruiter add-on on the seat. Without it, calls return
TIER_NOT_ACTIVE(403).
Signature
createJob(body: RecruiterCreateJobBody): Promise<RecruiterCreateJobResult>Example
import { Curviate } from "@curviate/sdk";
const curviate = new Curviate({
apiKey: "cvt_live_...",
baseUrl: "https://api.curviate.com",
});
const result = await curviate.account("acc_YOUR_ACCOUNT_ID").recruiter.createJob({ job_title: { id: "YOUR_ID", name: "YOUR_NAME" }, company: { id: "YOUR_ID" }, workplace_type: "ON_SITE", location: "YOUR_LOCATION", employment_status: "FULL_TIME", seniority_level: "INTERNSHIP", description: "YOUR_DESCRIPTION", industry: [], job_function: [], apply_method: { method: "linkedin", notification_email: "YOUR_NOTIFICATION_EMAIL" }, project_name: "YOUR_PROJECT_NAME" });
console.log(result.job_id);Parameters
| Name | Type | Required | Description |
|---|---|---|---|
job_title | object | Yes | The resolved job-title parameter id + its display name. |
company | object | Yes | Target company: a resolved company id, or a free-text name. |
workplace_type | string | Yes | Body parameter. |
location | string | Yes | A resolved LOCATION parameter id. |
employment_status | string | Yes | Body parameter. |
seniority_level | string | Yes | Body parameter. |
description | string | Yes | Content; minimum 200 characters, forwarded verbatim, never persisted. |
industry | array | Yes | 1-3 resolved industry parameter ids. |
job_function | array | Yes | 1-3 resolved job-function parameter ids. |
apply_method | object | Yes | How candidates apply: {method:'linkedin', notification_email, resume_required?} or {method:'external', website_url}. |
skills | array | No | Up to 10 resolved skill parameter ids. |
include_poster_info | boolean | No | Whether to show the posting recruiter's info. Defaults to true. |
tracking_pixel_url | string | No | Body parameter. |
company_job_id | string | No | Your own external job-requisition id, for reference. |
screening_questions | array | No | Body parameter. |
salary | object | No | Body parameter. |
additional_compensation | object | No | Body parameter. |
rejection_settings | object | No | Body parameter. |
project_name | string | Yes | Content; the new project's name, forwarded verbatim, never persisted. |
Returns
Resolves to RecruiterCreateJobResult. Top-level fields: object, job_id, project_id.
Error codes
| Code | What it means, and what to do |
|---|---|
UNAUTHORIZED | The API key is missing, malformed, or revoked. Check the key you passed to the client. |
INVALID_REQUEST | A parameter failed validation. The message names the offending field; fix the request rather than retrying it. |
RATE_LIMIT_ACCOUNT | This account's own quota is exhausted. Wait for the window in the Retry-After header, then retry. |
RATE_LIMIT_TENANT | The tenant-wide quota is exhausted across all accounts. Slow the whole workload, not just this call. |
PLATFORM_RATE_LIMIT | LinkedIn is throttling this account. Back off well beyond the hinted delay; sustained pressure risks the account. |
PLATFORM_ERROR | A transient upstream failure. Retry once with backoff before treating it as a real error. |
ACCOUNT_NOT_FOUND | No connected account with that id belongs to this tenant. List your accounts to get a current id. |
ACCOUNT_RESTRICTED | LinkedIn has restricted the account, so it cannot act until that is cleared. Retrying will not help. |
LINKEDIN_AUTH_FAILED | LinkedIn rejected the credentials. Confirm them with the account owner. |
LINKEDIN_FEATURE_NOT_SUBSCRIBED | The seat has the add-on but the LinkedIn account itself lacks the underlying subscription. |
RESOURCE_NOT_FOUND | The id in the path does not exist, or is not visible to this account. Re-read it from the list endpoint that produced it. |
TIER_NOT_ACTIVE | The seat does not have the add-on this endpoint needs. Enable it on the seat, then retry. |
Every code above is a stable CurviateError.code you can branch on. The full list, the response envelope, and retry semantics are in the Error codes reference.
Next steps
recruiter.searchParameters: resolve a human term into the opaque parameter ids the filters above take. Resolve first, then filter.recruiter.listApplicants: List applicants in a project's talent pool (POST-as-list; the body carries filters, no state mutates).recruiter.listJobs: List Recruiter job postings.- SDK Quick Start: installation, the client, account scoping, and pagination.