jobs.create
Create a classic job posting DRAFT.
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.
Signature
create(body: CreateJobBody): Promise<CreateJobResult>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").jobs.create({ job_title: { id: "YOUR_ID" }, company: { id: "YOUR_ID" }, workplace_type: "ON_SITE", location: "YOUR_LOCATION", employment_status: "FULL_TIME", description: "YOUR_DESCRIPTION", apply_method: { method: "linkedin", notification_email: "YOUR_NOTIFICATION_EMAIL" } });
console.log(result.id);Parameters
| Name | Type | Required | Description |
|---|---|---|---|
job_title | object | Yes | The job title, reference an existing LinkedIn job title by id, or supply a free-text name. |
company | object | Yes | The hiring company, reference an existing company by id, or supply a free-text name. |
workplace_type | string | Yes | Workplace arrangement. |
location | string | Yes | A LOCATION parameter id from GET /v1/{account_id}/search/parameters. |
employment_status | string | Yes | Employment type. |
description | string | Yes | Full job description (minimum 200 characters). Content passes through verbatim, never stored. |
apply_method | object | Yes | How candidates apply, through LinkedIn (with a notification email) or an external site. |
skills | array | No | Optional skill parameter ids from GET /v1/{account_id}/search/parameters. |
screening_questions | array | No | Optional screening questions attached to the posting. |
rejection_settings | object | No | Optional automatic-rejection configuration. |
Returns
Resolves to CreateJobResult. Top-level fields: object, id, title, company, location, state, is_repost, is_application_limit_reached, industries, created_at, description, views_count, applications_count, screening_questions, workplace_type, employment_status, budget, published_at, expires_at, closed_at, listed_at, hiring_team.
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. |
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
jobs.list: List the connected account's own classic job postings.jobs.listApplicants: List applicants to a job posting this account owns, a read; POST carries the filter body, matching the convention.jobs.get: Retrieve one classic LinkedIn job posting's full detail.- SDK Quick Start: installation, the client, account scoping, and pagination.