Partner Dashboard
Welcome back, Partner
Partner Documentation
Welcome to the TROZLAN Partner Documentation. Find everything you need to integrate with our platform, leverage our APIs, and build amazing experiences.
Getting Started
Your first steps to integrating with TROZLAN.
Follow our onboarding guide to set up your partner account and obtain your API keys.
API Reference
Detailed information about available API endpoints.
Core Endpoints
GET /v1/partner/profile - Retrieve your partner profile details.
POST /v1/users - Create a new user under your partner account.
GET /v1/users/{userId} - Fetch details for a specific user.
Example Request (Create User)
curl -X POST https://api.trozlan.com/v1/users \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "new.user@example.com",
"name": "New User Name",
"initialPlan": "basic"
}'
Example Response (Success 201)
{
"userId": "usr_123abc456def",
"email": "new.user@example.com",
"name": "New User Name",
"status": "active",
"createdAt": "2025-03-31T20:50:00Z"
}
Explore the full interactive API reference in the API Explorer.
SDKs
Official Software Development Kits to accelerate your integration.
JavaScript/TypeScript SDK (npm) - Installation and usage guide.
Python SDK (PyPI) - Installation and usage guide.
Webhooks
Receive real-time notifications for events on the TROZLAN platform.
Configure webhook endpoints in your dashboard settings to subscribe to events like user.created
, subscription.updated
, etc.
See the Webhook Documentation for payload structures and verification details.
Support
Need help? Find resources and contact information here.
Check our Partner FAQ for common questions.
Join the Partner Community Forum to connect with other developers.
For technical issues or direct assistance, please visit the Support Section.