Contains API calls that can be used against the Divisions.

1.Get Divisions

If the ATS user has set up divisions this call will return a list of all divisions for a specific company.In order to access this endpoint ensure that you do a GET request with an Authorization header containing your access token.

Headers:
Authorization : {token}

Result codes

403 Forbidden
200 OK
400 Bad request
500 Internal server error

Response

[
	{
		"Id":121,
		"Name":"Spree",
		"CompanyId":149,
		"LogoId":36749,
		"Deleted":false,
		"MicrositeId":99,
		"AllVacanciesRequireApproval":false,
		"AutoPublishVacancyOnApproval":false
	},
	{
		"Id":122,
		"Name":"OLX",
		"CompanyId":149,
		"LogoId":36753,
		"Deleted":false,
		"MicrositeId":100,
		"AllVacanciesRequireApproval":false,
		"AutoPublishVacancyOnApproval":false
	}
]