POST
/
v1
/
recruiter
/
close
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
          }
}

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)

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
          }
}