Get Screening for Job Submission
curl --request GET \
--url https://api.example.com/api/screening/submission/{jobSubmissionId}{
"id": 789,
"jobSubmissionId": 456,
"candidateId": 123,
"jobId": 789,
"currentScore": 66.67,
"potentialScore": 100,
"disqualify": false,
"submissionSummary": {
"screeningSummary": "The candidate meets most critical requirements including ICU experience and certifications...",
"followUpQuestions": [
"Are you willing and able to work night shifts?"
],
"missingInformation": [
"Night shift availability"
],
"strengths": [
"Current ACLS and BLS certifications"
],
"gaps": [
"Experience level slightly below requirement"
]
},
"applicationReadiness": {
"readinessScore": 75,
"status": "NeedsInformation",
"requiredDocuments": {
"missing": [
"PALS certification",
"Professional references"
],
"expiringSoon": [
"RN License (expires in 60 days)"
]
},
"qualificationGaps": {
"critical": [
"Night shift availability confirmation",
"PALS certification"
],
"recommended": [
"Additional year of ICU experience",
"Pediatric care experience"
]
},
"workHistoryGaps": {
"gaps": [
{
"startDate": "2022-06-01",
"endDate": "2022-08-15",
"duration": "2.5 months"
},
{
"startDate": "2023-01-01",
"endDate": "2023-03-01",
"duration": "2 months"
}
],
"totalGapDuration": "4.5 months"
},
"nextSteps": [
"Submit PALS certification",
"Provide professional references",
"Confirm night shift availability",
"Renew RN license"
]
},
"criteria": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 3 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "PartiallyMet",
"reasoning": "The candidate has 2 years of ICU experience...",
"textEvidence": "2 years of experience in Medical ICU"
}
],
"qualificationLevel": "Appropriate",
"isRelevant": true,
"candidate": {
"id": 123,
"name": "Jane Smith",
"location": "San Francisco, CA",
"yearsOfExperience": 2
},
"job": {
"id": 789,
"title": "ICU Nurse",
"location": "San Francisco, CA",
"department": "Nursing"
},
"createdAt": "2024-03-19T18:30:00Z"
}
Screening
Get Screening for Job Submission
Retrieve screening result for a specific job submission
GET
/
api
/
screening
/
submission
/
{jobSubmissionId}
Get Screening for Job Submission
curl --request GET \
--url https://api.example.com/api/screening/submission/{jobSubmissionId}{
"id": 789,
"jobSubmissionId": 456,
"candidateId": 123,
"jobId": 789,
"currentScore": 66.67,
"potentialScore": 100,
"disqualify": false,
"submissionSummary": {
"screeningSummary": "The candidate meets most critical requirements including ICU experience and certifications...",
"followUpQuestions": [
"Are you willing and able to work night shifts?"
],
"missingInformation": [
"Night shift availability"
],
"strengths": [
"Current ACLS and BLS certifications"
],
"gaps": [
"Experience level slightly below requirement"
]
},
"applicationReadiness": {
"readinessScore": 75,
"status": "NeedsInformation",
"requiredDocuments": {
"missing": [
"PALS certification",
"Professional references"
],
"expiringSoon": [
"RN License (expires in 60 days)"
]
},
"qualificationGaps": {
"critical": [
"Night shift availability confirmation",
"PALS certification"
],
"recommended": [
"Additional year of ICU experience",
"Pediatric care experience"
]
},
"workHistoryGaps": {
"gaps": [
{
"startDate": "2022-06-01",
"endDate": "2022-08-15",
"duration": "2.5 months"
},
{
"startDate": "2023-01-01",
"endDate": "2023-03-01",
"duration": "2 months"
}
],
"totalGapDuration": "4.5 months"
},
"nextSteps": [
"Submit PALS certification",
"Provide professional references",
"Confirm night shift availability",
"Renew RN license"
]
},
"criteria": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 3 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "PartiallyMet",
"reasoning": "The candidate has 2 years of ICU experience...",
"textEvidence": "2 years of experience in Medical ICU"
}
],
"qualificationLevel": "Appropriate",
"isRelevant": true,
"candidate": {
"id": 123,
"name": "Jane Smith",
"location": "San Francisco, CA",
"yearsOfExperience": 2
},
"job": {
"id": 789,
"title": "ICU Nurse",
"location": "San Francisco, CA",
"department": "Nursing"
},
"createdAt": "2024-03-19T18:30:00Z"
}
Retrieve the screening result for a specific job submission. This endpoint returns a single screening result rather than a list.
Path Parameters
ID of the job submission to get screening for
Response Fields
Unique identifier for the screening
ID of the job submission being screened
ID of the candidate being screened
ID of the job being screened against
Current match percentage based on verified criteria (0-100)
Maximum possible match percentage if all unverified criteria are met (0-100)
Whether the candidate should be disqualified from the job
Detailed screening analysis and recommendations
Show Summary fields
Show Summary fields
Overall assessment of the candidate’s fit for the position
Questions to ask the candidate about unverified or unclear criteria
List of criteria that couldn’t be verified from available information
List of criteria where the candidate shows strong matches
List of areas where the candidate doesn’t meet requirements
Analysis of application completeness and readiness to submit
Show Readiness fields
Show Readiness fields
Overall readiness score (0-100) based on completeness and qualification
Current status: “Ready”, “NeedsInformation”, “NeedsQualification”, “NotQualified”
Prioritized list of actions to improve application readiness
Detailed analysis of each criterion
Show Criterion fields
Show Criterion fields
Unique identifier for the criterion
Origin of the criterion (e.g., “job_criteria”)
The criterion formatted as a question
Original criterion text
Type of criterion (e.g., “YearsOfExperience”, “Required”, “Preferred”)
Match status: “FullyMet”, “PartiallyMet”, or “NotMet”
Explanation of how the criterion was evaluated
Supporting text from resume/application, if found
Overall qualification assessment (e.g., “Appropriate”, “Overqualified”, “Underqualified”)
Indicates if the candidate’s background is relevant to the position
{
"id": 789,
"jobSubmissionId": 456,
"candidateId": 123,
"jobId": 789,
"currentScore": 66.67,
"potentialScore": 100,
"disqualify": false,
"submissionSummary": {
"screeningSummary": "The candidate meets most critical requirements including ICU experience and certifications...",
"followUpQuestions": [
"Are you willing and able to work night shifts?"
],
"missingInformation": [
"Night shift availability"
],
"strengths": [
"Current ACLS and BLS certifications"
],
"gaps": [
"Experience level slightly below requirement"
]
},
"applicationReadiness": {
"readinessScore": 75,
"status": "NeedsInformation",
"requiredDocuments": {
"missing": [
"PALS certification",
"Professional references"
],
"expiringSoon": [
"RN License (expires in 60 days)"
]
},
"qualificationGaps": {
"critical": [
"Night shift availability confirmation",
"PALS certification"
],
"recommended": [
"Additional year of ICU experience",
"Pediatric care experience"
]
},
"workHistoryGaps": {
"gaps": [
{
"startDate": "2022-06-01",
"endDate": "2022-08-15",
"duration": "2.5 months"
},
{
"startDate": "2023-01-01",
"endDate": "2023-03-01",
"duration": "2 months"
}
],
"totalGapDuration": "4.5 months"
},
"nextSteps": [
"Submit PALS certification",
"Provide professional references",
"Confirm night shift availability",
"Renew RN license"
]
},
"criteria": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 3 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "PartiallyMet",
"reasoning": "The candidate has 2 years of ICU experience...",
"textEvidence": "2 years of experience in Medical ICU"
}
],
"qualificationLevel": "Appropriate",
"isRelevant": true,
"candidate": {
"id": 123,
"name": "Jane Smith",
"location": "San Francisco, CA",
"yearsOfExperience": 2
},
"job": {
"id": 789,
"title": "ICU Nurse",
"location": "San Francisco, CA",
"department": "Nursing"
},
"createdAt": "2024-03-19T18:30:00Z"
}
⌘I