Skip to main content
PUT
/
job-descriptions
/
{id}
Update job description
curl --request PUT \
  --url https://api.gospott.com/job-descriptions/{id} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "content": "<p>We are looking for a senior software engineer...</p>",
  "externalJobTitle": "Senior Software Engineer"
}
'
{
  "status": 0,
  "message": "<string>",
  "requestId": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "received": "<unknown>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.spott.io/llms.txt

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

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
content
string | null
required

The HTML content of the job description. Set to null to clear the description.

Example:

"<p>We are looking for a senior software engineer...</p>"

externalJobTitle
string
required

The externally visible job title for this job

Minimum string length: 1
Example:

"Senior Software Engineer"

Response

Job description updated successfully