v2.0
API Reference
Build powerful integrations with the AICONTON REST API
Base URL
https://api.aiconton.in/v2Format: JSON
Auth: Bearer Token
Authentication
Learn how to authenticate with the AICONTON API using API keys and OAuth 2.0.
POST /auth/tokenPOST /auth/refreshDELETE /auth/revokeWorkflows
Create, manage, and trigger automation workflows programmatically.
GET /workflowsPOST /workflowsPUT /workflows/:idPOST /workflows/:id/triggerCandidates
Manage job applicants and track their progress through your hiring pipeline.
GET /candidatesPOST /candidatesGET /candidates/:idPATCH /candidates/:idJobs
Create and manage job postings, requirements, and application forms.
GET /jobsPOST /jobsPUT /jobs/:idDELETE /jobs/:idEmployees
Access and manage employee data in your HRMS.
GET /employeesPOST /employeesGET /employees/:idPATCH /employees/:idWebhooks
Set up webhooks to receive real-time notifications about events.
GET /webhooksPOST /webhooksDELETE /webhooks/:idQuick Example
Create a Workflow
POSTcurl -X POST https://api.aiconton.in/v2/workflows \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "New Lead Notification",
"trigger": {
"type": "webhook",
"event": "lead.created"
},
"actions": [
{
"type": "send_email",
"to": "sales@company.com",
"template": "new_lead"
}
]
}'Need Help with the API?
Our developer support team is here to help you integrate AICONTON into your applications.