Skip to main content
POST
/
applications
Create application
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>"
    }
  }
}

Authorizations

Authorization
string
header
required

API key from Settings > API Keys

Body

application/json
job_id
string<uuid>
required

The job ID to add the candidate to

name
string
required

Candidate's full name

email
string<email>
required

Candidate's email address

linkedin_url
string<uri>

Candidate's LinkedIn profile URL

notes
string

Initial notes about the candidate

Response

Application created

application
object