email (string, as query parameter, required) : The email address to search for. Supports partial matching.email=john@example.com200 OK : An array of matching candidates, each containing the candidate ID and email.[
{"id": 123, "email": "john@example.com"},
{"id": 456, "email": "john.doe@example.com"}
]400 Bad Request : If the email parameter is not provided.curl --location --request GET 'https://api.recruspace.com/api/v1/client/candidates/search-by-email/?email' \
--header 'Authorization: Bearer <token>'[
{
"id": 0,
"email": "user@example.com"
}
]