Skip to main content
POST
/
candidate-portal
/
open-application
Create candidate
curl --request POST \
  --url https://api.gospott.com/candidate-portal/open-application \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "firstName": "<string>",
  "lastName": "<string>",
  "cvAttachmentId": "<string>",
  "email": {
    "purpose": "personal",
    "email": "jsmith@example.com",
    "isPrimary": true
  },
  "phoneNumber": {
    "purpose": "personal",
    "phoneNumber": "<string>",
    "isPrimary": true
  }
}
'

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Body

application/json
firstName
string
required
Required string length: 1 - 100
Pattern: /^[a-zA-ZÀ-ÿ\s\-']+$/
lastName
string
required
Required string length: 1 - 100
Pattern: /^[a-zA-ZÀ-ÿ\s\-']+$/
cvAttachmentId
string
required
Required string length: 1 - 100
email
object
required
phoneNumber
object
required
socialMedia
object

Response

200 - undefined