Our App Connect API allows you to integrate your recruitment data with third-party systems, like Zapier. You can use it to automate tasks, sync data, and build custom workflows. Do you need to accept applicants from third-party apps or allow credentials to be managed off-site? Try our Recruitment API instead.
To use our App Connect API, you will need to create an API key from the Settings > API Keys page. You should create a separate key for each consumer of the api, that way you can update or disable each service without having to update the others.
Note: The scope of the API key will only cover data pertaining to the user account it belongs to. This is different from a Recruitment API Key, which covers all the data for an organisation.
The API key should be included in the Authorization header of your HTTP requests as a Bearer token.
GET https://lms.qintil.com/app-connect/v1/recruitment/inbox
Query Parameters (optional):
STRING type
Options:
new-applicant
task-form-signature
task-upload
task-questionnaire
task-new-reference
task-reference-reply
ai-chaser-result
secondary-recruiter-assigned
primary-recruiter-reassigned
candidate-rejoin-request
email-delivery-error
Use this endpoint to retrieve the inbox items for your account. You can limit to only one type of notification using the TYPE query parameter (optional).
Headers: Authorization: Bearer [Your API Key]
Request https://lms.qintil.com/app-connect/v1/recruitment/inbox?type=task-upload
Response: 200 OK
[
{
"id": 1278303,
"timestamp": "2025-08-21T11:38:06.647",
"type": "task-upload",
"title": "Kerr Russell",
"caption": "Uploaded 'Upload ID style photo for employee badge'",
"candidateId": 168050,
"taskId": 636241,
"isUnread": true
}
]