Get posted job details
curl --request GET \
--url https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}import requests
url = "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"externalJobTitle": "<string>",
"jobDescription": "<string>",
"location": {
"street1": "<string>",
"street2": "<string>",
"postalCode": "<string>",
"city": "<string>",
"region": "<string>",
"state": "<string>",
"country": "<string>",
"rawCityCountry": "<string>",
"latitude": 123,
"longitude": 123,
"formattedAddress": "<string>"
},
"publishedAt": "2023-11-07T05:31:56Z"
}public
Get posted job details
Get details on an single publically posted job for a tenant.
GET
/
{publicTenantSlug}
/
vacancy-portal
/
jobs
/
{jobBoardPostingId}
Get posted job details
curl --request GET \
--url https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}import requests
url = "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.gospott.com/{publicTenantSlug}/vacancy-portal/jobs/{jobBoardPostingId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"externalJobTitle": "<string>",
"jobDescription": "<string>",
"location": {
"street1": "<string>",
"street2": "<string>",
"postalCode": "<string>",
"city": "<string>",
"region": "<string>",
"state": "<string>",
"country": "<string>",
"rawCityCountry": "<string>",
"latitude": 123,
"longitude": 123,
"formattedAddress": "<string>"
},
"publishedAt": "2023-11-07T05:31:56Z"
}Response
200 - application/json
Available options:
remote, hybrid, onsite Available options:
fullTime, partTime, temporary, internship Show child attributes
Show child attributes
Was this page helpful?
⌘I

