Platform APIs
Manage connectors, integrations, and webhooks. Get all connectors enabled through Unizo Console, view integrations created via Connect UI or API-first approach or Connect Agent, and webhook registration / de-registration.
Get Started
Base URL
https://api.unizo.ai/api/v1/
Example: List All Services
Get all services enabled in Unizo Console:
curl -X GET https://api.unizo.ai/api/v1/services \
-H "apiKey: YOUR_API_KEY"
Example: List Integrations
Get all integrations created via Connect UI or API-first approach:
curl -X GET https://api.unizo.ai/api/v1/integrations \
-H "apiKey: YOUR_API_KEY"
Example: Register a Webhook
Register a webhook endpoint to receive real-time events:
curl -X POST https://api.unizo.ai/api/v1/webhooks \
-H "apiKey: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://your-app.com/webhooks",
"events": ["integration.created", "integration.updated"]
}'
Need Help?
For platform API-related support:
Contact support at support@unizo.ai