REST Resource: projects.tenants.companies

Resource: Company

A Company resource represents a company in the service. A company is the entity that owns job postings, that is, the hiring entity responsible for employing applicants for the job position.

JSON representation
{
  "name": string,
  "displayName": string,
  "externalId": string,
  "size": enum (CompanySize),
  "headquartersAddress": string,
  "hiringAgency": boolean,
  "eeoText": string,
  "websiteUri": string,
  "careerSiteUri": string,
  "imageUri": string,
  "keywordSearchableJobCustomAttributes": [
    string
  ],
  "derivedInfo": {
    object (DerivedInfo)
  },
  "suspended": boolean
}
Fields
name

string

Required during company update.

The resource name for a company. This is generated by the service when a company is created.

The format is "projects/{projectId}/tenants/{tenantId}/companies/{company_id}", for example, "projects/foo/tenants/bar/companies/baz".

If tenant id is unspecified, the default tenant is used. For example, "projects/foo/companies/bar".

displayName

string

Required. The display name of the company, for example, "Google LLC".

externalId

string

Required. Client side company identifier, used to uniquely identify the company.

The maximum number of allowed characters is 255.

size

enum (CompanySize)

The employer's company size.

headquartersAddress

string

The street address of the company's main headquarters, which may be different from the job location. The service attempts to geolocate the provided address, and populates a more specific location wherever possible in DerivedInfo.headquarters_location.

hiringAgency

boolean

Set to true if it is the hiring agency that post jobs for other employers.

Defaults to false if not provided.

eeoText

string

Equal Employment Opportunity legal disclaimer text to be associated with all jobs, and typically to be displayed in all roles.

The maximum number of allowed characters is 500.

websiteUri

string

The URI representing the company's primary web site or home page, for example, "https://www.google.com".

The maximum number of allowed characters is 255.

careerSiteUri

string

The URI to employer's career site or careers page on the employer's web site, for example, "https://careers.google.com".

imageUri

string

A URI that hosts the employer's company logo.

keywordSearchableJobCustomAttributes[]

string

A list of keys of filterable Job.custom_attributes, whose corresponding stringValues are used in keyword searches. Jobs with stringValues under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.

derivedInfo

object (DerivedInfo)

Output only. Derived details about the company.

suspended

boolean

Output only. Indicates whether a company is flagged to be suspended from public availability by the service when job content appears suspicious, abusive, or spammy.

Methods

create

Creates a new company entity.

delete

Deletes specified company.

get

Retrieves specified company.

list

Lists all companies associated with the project.

patch

Updates specified company.