curl --request GET \
--url https://api.gospott.com/candidate-portal/{candidateId} \
--header 'x-api-key: <api-key>'{
"firstName": "<string>",
"lastName": "<string>",
"emails": [
{
"email": "jsmith@example.com",
"purpose": "<string>",
"isPrimary": true
}
],
"phoneNumbers": [
{
"purpose": "personal",
"phoneNumber": "<string>",
"isPrimary": true
}
],
"socialMedia": [
{
"url": "<string>",
"type": "LINKEDIN",
"isPrimary": true
}
]
}Get basic details on existing candidate to pre-fill the candidate update form.
curl --request GET \
--url https://api.gospott.com/candidate-portal/{candidateId} \
--header 'x-api-key: <api-key>'{
"firstName": "<string>",
"lastName": "<string>",
"emails": [
{
"email": "jsmith@example.com",
"purpose": "<string>",
"isPrimary": true
}
],
"phoneNumbers": [
{
"purpose": "personal",
"phoneNumber": "<string>",
"isPrimary": true
}
],
"socialMedia": [
{
"url": "<string>",
"type": "LINKEDIN",
"isPrimary": true
}
]
}API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.