What is the getAllIndustries Method?

This method will retrieve a list of available job industries from the Apptivo database. These industries are used for both searching job listings, as well as creating new jobs in the Jobs App.

Method Definition

@WebMethod(action = "getAllIndustries", operationName = "getAllIndustries")
public IndustryDetails[] getAllIndustries(String siteAuthenticationKey)

Expected Response

stdClass Object
(
[return] => Array
(
[0] => stdClass Object
(
[description] => Automotive
[displayName] => Automotive
[industryId] => 14
[industryName] => Automative
)

[1] => stdClass Object
(
[description] => Computer Hardware
[displayName] => Computer Hardware
[industryId] => 4

[industryName] => Computer Hardware
)
)
)

Back to API reference.