Brief reference for your developer. Full spec: docs/recruiterpm-integration-spec.md
POST [your URL]
Authorization: Bearer
[your API key]
Body:
{
"tenant_id": <company_id>,
"candidates": [
{
"external_ref": "<profile id>",
"first_name": "...",
"last_name": "...",
"current_company": "...",
"current_title": "...",
"city": "...",
"state": "..."
}
]
}
Response:
{
"matches": {
"<external_ref>": {
"exists": true,
"contact_id": 12345,
"contact_url": "https://recruiterpm.com/contacts/12345",
"missing_fields": ["mobile","personal_email"],
"owner": "Jane Recruiter",
"last_activity": "2026-04-12"
}
}
}