INPUT_OBJECT

EditInterviewTemplateInput

link GraphQL Schema definition

1input EditInterviewTemplateInput {
4
2# Name of the template.
3name: String
7
5# The team that the template is associated with
6teamId: ID
10
8# List of the Question IDs.
9taskIds: [ID!]
13
11# Recommended Level & Overall Evaluation settings of the feedback field.
12feedbackSettings: FeedbackSettingsInput
16
14# Question ids with the their scores.
15taskCustomScores: [TaskCustomScoreInput!]
20
17# Default interview expiration time for this template. Select between 1 and 336
18# hours inclusive.
19defaultExpirationTimeInHours: Int
23
21# Default fraud prevention settings for interviews created from this template.
22fraudPrevention: InterviewFraudPreventionSetupInput
26
24# Default acknowledgements for interviews created from this template.
25acknowledgements: InterviewSessionAcknowledgementsInput
30
27# When enabled, candidates will be placed in a waiting room until the interviewer
28# joins.
29defaultWaitingRoomEnabled: Boolean
33
31# When enabled, interviewers and candidates can video chat directly in CodeSignal.
32defaultVideoCallEnabled: Boolean
34}

link Required by