curl --request PUT \
--url https://api.example.com/api/Divisions/{id} \
--header 'Content-Type: application/json' \
--data '
{
"division": {
"id": 123,
"name": "<string>",
"shortName": "<string>",
"publicName": "<string>",
"active": true,
"country": "<string>",
"countryName": "<string>",
"timeZone": "<string>",
"gmtOffset": 123,
"timesheetSystem": 123
},
"jobSettings": [
{
"stageId": 123,
"stageName": "<string>",
"contract": 123,
"fixedTerm": 123,
"permanent": 123
}
],
"candidateSettings": [
{
"id": 123,
"name": "<string>",
"contract": 123,
"fixedTerm": 123,
"permanent": 123
}
]
}
'