Skip to main content
POST
/
api
/
public
/
candidates
/
new
Create candidate
curl --request POST \
  --url http://localhost:3001/api/public/candidates/new \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com"
}'
{
  "success": true,
  "identifier": "<string>"
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string
required

The full name of the candidate

Minimum length: 1
email
string<email>
required

The email address of the candidate

Response

Successfully created candidate

success
boolean
required

Whether the operation was successful

identifier
string
required

Unique identifier for the newly created candidate