Skip to main content
PUT
/
vacancies
/
{id}
Update a job
curl --request PUT \
  --url https://api.gospott.com/vacancies/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "employmentType": "fullTime",
  "locationType": "remote",
  "companyId": "<string>",
  "description": "<string>",
  "location": {
    "type": "primary_home",
    "street1": "<string>",
    "street2": "<string>",
    "postalCode": "<string>",
    "city": "<string>",
    "region": "<string>",
    "state": "<string>",
    "country": "<string>",
    "latitude": 123,
    "longitude": 123
  },
  "salaryRange": {
    "currency": "USD",
    "min": 123,
    "max": 123
  },
  "startAt": "2023-11-07T05:31:56Z",
  "endAt": "2023-11-07T05:31:56Z",
  "teamUserIds": [
    "<string>"
  ],
  "clientTeamUserIds": [
    "<string>"
  ],
  "stageId": "<string>",
  "name": "<string>",
  "scorecard": [
    {
      "group_name": "<string>",
      "attributes": [
        {
          "attribute": "<string>"
        }
      ]
    }
  ],
  "dealValue": {
    "currency": "EUR",
    "amount": 123
  }
}
'

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Body

application/json
employmentType
enum<string> | null
Available options:
fullTime,
partTime,
temporary,
internship
locationType
enum<string> | null
Available options:
remote,
hybrid,
onsite
companyId
string
description
string | null
location
object
salaryRange
object
startAt
string<date-time> | null
endAt
string<date-time> | null
teamUserIds
string[]
clientTeamUserIds
string[]
stageId
string
name
string
scorecard
object[]
dealValue
object

Response

Job updated successfully