curl --request GET \
--url 'https://api.harmonyforstaffing.com/api/matching/candidates?jobId=123' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": {
"zipCode": "94143",
"radius": 25,
"states": ["CA"],
"requireLocalCandidates": true
},
"specialties": ["icu", "er"],
"criteria": [
{
"description": "Must have 2 years of ICU nursing experience",
"importance": "required",
"type": "experience"
},
{
"description": "Current ACLS certification required",
"importance": "required",
"type": "certification"
}
],
"replaceCriteria": false,
"minScore": 70
}'
{
"candidates": [
{
"id": 456,
"location": {
"city": "San Francisco",
"state": "CA",
"zipCode": "94143",
"distance": 5.2
},
"screening": {
"currentScore": 85.5,
"potentialScore": 100,
"disqualify": false,
"summary": {
"screeningSummary": "Strong candidate with extensive ICU experience...",
"followUpQuestions": [
"Are you comfortable with rotating shifts?",
"Can you start by June 1st?"
],
"strengths": [
"Exceeds experience requirements",
"All required certifications current",
"Local candidate within 10 miles"
],
"gaps": [
"No recent pediatric experience"
]
},
"questions": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 2 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "FullyMet",
"reasoning": "The candidate has 5 years of ICU experience...",
"textEvidence": "5 years of experience in Medical ICU at Saint Francis Hospital"
}
]
},
"qualificationLevel": "Appropriate",
"isRelevant": true
}
],
"total": 12,
"limit": 20,
"offset": 0
}
Find candidates that match a job’s requirements and preferences
curl --request GET \
--url 'https://api.harmonyforstaffing.com/api/matching/candidates?jobId=123' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": {
"zipCode": "94143",
"radius": 25,
"states": ["CA"],
"requireLocalCandidates": true
},
"specialties": ["icu", "er"],
"criteria": [
{
"description": "Must have 2 years of ICU nursing experience",
"importance": "required",
"type": "experience"
},
{
"description": "Current ACLS certification required",
"importance": "required",
"type": "certification"
}
],
"replaceCriteria": false,
"minScore": 70
}'
{
"candidates": [
{
"id": 456,
"location": {
"city": "San Francisco",
"state": "CA",
"zipCode": "94143",
"distance": 5.2
},
"screening": {
"currentScore": 85.5,
"potentialScore": 100,
"disqualify": false,
"summary": {
"screeningSummary": "Strong candidate with extensive ICU experience...",
"followUpQuestions": [
"Are you comfortable with rotating shifts?",
"Can you start by June 1st?"
],
"strengths": [
"Exceeds experience requirements",
"All required certifications current",
"Local candidate within 10 miles"
],
"gaps": [
"No recent pediatric experience"
]
},
"questions": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 2 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "FullyMet",
"reasoning": "The candidate has 5 years of ICU experience...",
"textEvidence": "5 years of experience in Medical ICU at Saint Francis Hospital"
}
]
},
"qualificationLevel": "Appropriate",
"isRelevant": true
}
],
"total": 12,
"limit": 20,
"offset": 0
}
curl --request GET \
--url 'https://api.harmonyforstaffing.com/api/matching/candidates?jobId=123' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"location": {
"zipCode": "94143",
"radius": 25,
"states": ["CA"],
"requireLocalCandidates": true
},
"specialties": ["icu", "er"],
"criteria": [
{
"description": "Must have 2 years of ICU nursing experience",
"importance": "required",
"type": "experience"
},
{
"description": "Current ACLS certification required",
"importance": "required",
"type": "certification"
}
],
"replaceCriteria": false,
"minScore": 70
}'
Show Candidate Object
Show Screening Object
Show Summary Object
Show Question Object
{
"candidates": [
{
"id": 456,
"location": {
"city": "San Francisco",
"state": "CA",
"zipCode": "94143",
"distance": 5.2
},
"screening": {
"currentScore": 85.5,
"potentialScore": 100,
"disqualify": false,
"summary": {
"screeningSummary": "Strong candidate with extensive ICU experience...",
"followUpQuestions": [
"Are you comfortable with rotating shifts?",
"Can you start by June 1st?"
],
"strengths": [
"Exceeds experience requirements",
"All required certifications current",
"Local candidate within 10 miles"
],
"gaps": [
"No recent pediatric experience"
]
},
"questions": [
{
"id": 1,
"source": "job_criteria",
"question": "How many years of ICU nursing experience do you have?",
"criteria": "Minimum of 2 years ICU nursing experience required",
"type": "YearsOfExperience",
"status": "FullyMet",
"reasoning": "The candidate has 5 years of ICU experience...",
"textEvidence": "5 years of experience in Medical ICU at Saint Francis Hospital"
}
]
},
"qualificationLevel": "Appropriate",
"isRelevant": true
}
],
"total": 12,
"limit": 20,
"offset": 0
}