T

Partner Dashboard

Welcome back, Partner

P

Quantum Innovations

Gold Partner

API Endpoints

Partner

Users

POST

/v1/users

Create a new user associated with your partner account.

Parameters

Example Request

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)

{
  "userId": "usr_123abc456def",
  "email": "new.user@example.com",
  "name": "New User Name",
  "status": "active",
  "createdAt": "2025-03-31T20:50:00Z"
}

Try it out

Enter parameters and execute the request (mock execution).