Skip to main content
PUT
/
api
/
Divisions
/
{id}
Update a Division.
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
    }
  ]
}
'
{
  "id": 123,
  "name": "<string>",
  "shortName": "<string>",
  "publicName": "<string>",
  "active": true,
  "country": "<string>",
  "countryName": "<string>",
  "timeZone": "<string>",
  "gmtOffset": 123,
  "timesheetSystem": 123
}

Path Parameters

id
integer<int32>
required

Body

application/json
division
object
jobSettings
object[] | null
candidateSettings
object[] | null

Response

200 - application/json

OK

id
integer<int32>
name
string | null
shortName
string | null
publicName
string | null
active
boolean
country
string | null
countryName
string | null
timeZone
string | null
gmtOffset
integer<int32>
timesheetSystem
integer<int32>