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