OBJECT
CertificationRequest
A request for a standardized assessment from a company. A certification request is uniquely identified by its ID, or by the (companyId, testId, candidateEmail) triplet.
link GraphQL Schema definition
1 type CertificationRequest { 2 3 # Unique ID of the request. 4 ID! : 5 6 # ID of the company that sent the request. 7 ID! : 8 9 # Company that sent the request. 10 Company : 11 12 # The ID of the standardized test. 13 ID! : 14 15 # The standardized test which result the candidate is expected to share. 16 StandardizedTest : 17 18 # The status of the last request sent to this user. 19 CertificationRequestStatus! : 20 21 # The email of the candidate. 22 String! : 23 24 # The full name of the candidate. 25 String! : 26 27 # The best result among the results the candidate shared in response to the 28 # request. 29 CertificationRequestResult : 30 31 # The URL the candidate can follow to take the assessment. Provided only if 32 # lastStatus is "pending". 33 String : 34 35 # ATS integrations 36 Integrations] : [ 37 38 # Overrides default duration of the test. 39 Int : 40 41 }