curl --request POST \
--url https://public.api.inop.ai/v1/match-insights/recommend-candidates \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"jobDescription": "Senior Backend Engineer with experience in Python and Django.",
"candidates": [
{
"first_name": "John",
"last_name": "Doe",
"linkedin_url": "https://linkedin.com/in/johndoe",
"email": "[email protected]",
"phone_number": "+1234567890",
"resume": "https://example.com/resume/johndoe.pdf"
},
{
"first_name": "Jane",
"last_name": "Smith",
"linkedin_url": "https://linkedin.com/in/janesmith",
"email": "[email protected]",
"phone_number": "+0987654321",
"resume": "https://example.com/resume/janesmith.pdf"
}
]
}
'