Skip to main content
GET
/
api
/
public
/
candidates
/
email
/
{email}
Get candidate by email
curl --request GET \
  --url http://localhost:3001/api/public/candidates/email/{email} \
  --header 'x-api-key: <api-key>'
{
  "candidate": {
    "name": "<string>",
    "email": "jsmith@example.com",
    "createdAt": "2023-11-07T05:31:56Z",
    "identifier": "<string>",
    "notes": "<string>",
    "status": "Not Assigned",
    "interviewIds": [
      "<string>"
    ]
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

email
string
required

The email address of the candidate

Response

Successfully retrieved candidate details with interviews

candidate
object
required

Candidate details with interviews