curl --request PUT \
--url https://api.example.com/api/JobPosting/Templates/{templateId} \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"title": "<string>",
"ownerID": 123,
"statusID": 123,
"shortDescription": "<string>",
"description": "<string>",
"bullet1": "<string>",
"bullet2": "<string>",
"bullet3": "<string>",
"division": 123,
"screeningQuestionnaireTemplateID": 123,
"classificationID": 123,
"subClassificationID": 123,
"countryID": 123,
"regionID": 123,
"locationID": 123,
"workTypeID": 123,
"payCurrencyID": 123,
"payFrom": 123,
"payTo": 123,
"payType": 123,
"payDisplay": "<string>",
"jobBoardIDs": [
123
],
"attributes": [
{
"jobBoardID": 123,
"type": "<string>",
"value": "<string>"
}
]
}
'