Skip to main content
POST
/
v1
/
recruiter
/
close
Close Job
curl --request POST \
  --url https://api.linkupapi.com/v1/recruiter/close \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "login_token": "<string>",
  "job_id": "<string>",
  "country": "<string>"
}
'
{
  "status": "success",
  "data": {
            "job_id": job_id,
            "message": "Job posting successfully closed",
            "closed_at": current_timestamp
          }
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkupapi.com/llms.txt

Use this file to discover all available pages before exploring further.

Close an active job posting on LinkedIn, removing it from the available positions list and stopping new applications.
This endpoint costs 1 credit per job closing operation.

Header Parameters

x-api-key
string
required
Your API key

Body Parameters

login_token
string
required
LinkedIn authentication cookie obtained from the login/verify process
job_id
string
required
LinkedIn job posting ID to close
country
string
default:"FR"
Country code for proxy selection. Available: (US, UK, FR, DE, NL, IT, IL, CA, BR, ES, IN)

Response

status
string
Request status (success/error)
message
string
Status message
details
string
Additional error details (in case of error)
{
  "status": "success",
  "data": {
            "job_id": job_id,
            "message": "Job posting successfully closed",
            "closed_at": current_timestamp
          }
}