OBJECT
Company
A company is an organization of user accounts that have access to the assessment platform.
link GraphQL Schema definition
1 type Company { 2 3 ID! : 4 5 # A unique, human-readable identifier for the company. 6 String! : 7 8 # The display name of the company. 9 String! : 10 11 # The link to the logo of the company. 12 String! : 13 14 # The status of the company. 15 String! : 16 17 # The user ids of the company's contacts. 18 Contact]! : [ 19 20 # This field is used by CodeSignal admins only. 21 String! : 22 23 # Whether the company profile page is enabled for candidates 24 Boolean! : 25 26 # The plans to which a company is subscribed 27 CompanyPlan]! : [ 28 29 # Custom feature values for this company, which will override plan feature values. 30 CompanyFeatures! : 31 32 # This company's usage of each numeric feature. 33 UsedNumericFeatures! : 34 35 # This company's stripe customer ID. 36 String : 37 38 }
link Required by
- CertificationRequestA request for a standardized assessment from a company. A certification request is uniquely identified by its ID, or by the (companyId, testId, candidateEmail) triplet.
- CompanyTestA non-standardized test owned by a particular company.
- LiveInterviewA live interview defines a collaboration programming session.
- Mutation
- Query