Getting Started
- Introduction
- Authentication
- Webhooks
Interview
Interview Reports
Mock Interview
Webhook
Get all webhooks
This endpoint fetches all configured webhooks.
GET
/
webhooks
curl --request GET \
--url https://public.api.micro1.ai/webhooks \
--header 'x-api-key: <api-key>'
{
"status": "true",
"message": "Webhooks fetched successfully",
"data": [
{
"webhook_id": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://micro1.ai/webhook",
"description": "Webhook to trigger when a interview report is created",
"event": "interview_report.created",
"date_created": "2021-01-01 00:00:00",
"date_modified": "2021-01-01 00:00:00",
"status": "active"
}
]
}
Authorizations
API key to access the API
Response
200
application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://public.api.micro1.ai/webhooks \
--header 'x-api-key: <api-key>'
{
"status": "true",
"message": "Webhooks fetched successfully",
"data": [
{
"webhook_id": "123e4567-e89b-12d3-a456-426614174000",
"url": "https://micro1.ai/webhook",
"description": "Webhook to trigger when a interview report is created",
"event": "interview_report.created",
"date_created": "2021-01-01 00:00:00",
"date_modified": "2021-01-01 00:00:00",
"status": "active"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.