WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Close a job posting

POST/api/linkedin/gateway/linkedin/jobs/{id}/close

Takes a live posting down, stopping new applications and ending any budget spend on a promoted listing.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Path parameters

FieldTypeDescription
id *stringThe job posting's id.

Query parameters

FieldTypeDescription
service"CLASSIC" | "RECRUITER"Which LinkedIn service this posting lives under. Defaults to Classic.

Body parameters

FieldTypeDescription
account_id *stringThe connected account the posting belongs to.

Response fields

FieldTypeDescription
job_idstringEchoes the posting's id.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.·403 Forbidden. account_id doesn't belong to this key.·404 Not Found. No job posting with that id belongs to this account.·422 Unprocessable Entity. The posting has already been closed.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl -X POST "https://api.warmably.com/api/linkedin/gateway/linkedin/jobs/3897456210/close?service=CLASSIC" \
  -H "Authorization: Bearer wm_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": "459993d2-b0e7-4b19-baf9-45252ca324cf"
  }'
Response
200 OK
{
  "object": "LinkedinJobPostingClosed",
  "job_id": "3897456210"
}
No key yet? Create one from Dashboard → API Keys.