v1
latestOpenAPI 3.1.02026-07-243113441.2 MBIndustry Selection
Update a company industry selection
Update the industry classification for a company by passing in a NAICS code.
Optionally provide an industry title and SIC codes. If you do not provide SIC codes, we will use the NAICS code to perform an internal lookup.
Our UI leverages Middesk API to determine industry classification codes.
scope: companies:write
put/v1/companies/{company_id}/industry_selection
Path parameters
company_idstring required
The UUID of the company
Headers
X-Gusto-API-Version'2026-06-15'
Determines the date-based API version associated with your API call. If none is provided, your application's minimum API version is used.
Request body
Example request
{
"title": "Computer Training",
"naics_code": "611420",
"sic_codes": [
"8243"
]
}Response
Created
Example response
{
"title": "Computer Training",
"naics_code": "611420",
"sic_codes": [
"8243"
]
}