cURL
curl --request POST \ --url https://hireloam.com/api/v1/applications \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "job_id": "550e8400-e29b-41d4-a716-446655440000", "name": "Jane Smith", "email": "[email protected]", "linkedin_url": "https://linkedin.com/in/janesmith", "notes": "Referred by John Doe" } '
{ "application": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "stage_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "source_type": "<string>", "created_at": "2023-11-07T05:31:56Z", "candidate": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "full_name": "<string>", "primary_email": "[email protected]", "linkedin_url": "<string>" }, "stage": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "order_index": 123 }, "job": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "title": "<string>" } } }
Add a new candidate to a job. Creates an application in the Inbox stage.
API key from Settings > API Keys
The job ID to add the candidate to
Candidate's full name
Candidate's email address
Candidate's LinkedIn profile URL
Initial notes about the candidate
Application created
Show child attributes
Was this page helpful?