v1

latestOpenAPI 3.1.02026-07-243113441.2 MB
Industry 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

titlestring nullable

Industry title

naics_codestring required

North American Industry Classification System (NAICS) is used to classify businesses with a six digit number based on the primary type of work the business performs.

sic_codesstring[]

A list of Standard Industrial Classification (SIC) codes, which are four digit numbers that categorize the industries that companies belong to based on their business activities. If sic_codes is not passed in, we will perform an internal lookup with naics_code.

Example request

{
  "title": "Computer Training",
  "naics_code": "611420",
  "sic_codes": [
    "8243"
  ]
}

Response

Created

company_uuidstring

Company UUID

titlestring nullable

Industry title

naics_codestring nullable

North American Industry Classification System (NAICS) is used to classify businesses with a six digit number based on the primary type of work the business performs.

sic_codesstring[]

A list of Standard Industrial Classification (SIC) codes, which are four digit numbers that categorize the industries that companies belong to based on their business activities. If sic_codes is not passed in, we will perform an internal lookup with naics_code.

Example response

{
  "title": "Computer Training",
  "naics_code": "611420",
  "sic_codes": [
    "8243"
  ]
}