GET /operators/me
Get your operator profile. Requires session authentication.
Request
GET /api/v1/operators/me Authorization: Bearer SESSION_TOKEN
Response — 200 OK
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"email": "roger@prowl.dev",
"name": "Prowl Labs",
"company_name": "Prowl Labs Inc.",
"company_url": "https://prowl.dev",
"avatar_url": null,
"role": "operator",
"status": "active",
"kyc_status": "verified",
"kyc_verified_at": "2026-02-05T14:00:00Z",
"kyc_expires_at": "2027-02-05T14:00:00Z",
"tier": "pro",
"agent_limit": 50,
"notification_prefs": {
"trust_alerts": true,
"incident_alerts": true,
"weekly_digest": true,
"kyc_reminders": true
},
"created_at": "2026-01-15T10:00:00Z",
"updated_at": "2026-03-18T12:00:00Z"
}PATCH /operators/me
Update your operator profile. All fields are optional — include only what you want to change.
Request
PATCH /api/v1/operators/me
Authorization: Bearer SESSION_TOKEN
Content-Type: application/json
{
"name": "Prowl Labs",
"company_name": "Prowl Labs Inc.",
"company_url": "https://prowl.dev",
"notification_prefs": {
"trust_alerts": true,
"incident_alerts": true,
"weekly_digest": false,
"kyc_reminders": true
}
}name — Operator display namecompany_name — Company name (nullable)company_url — Company website URLavatar_url — Profile avatar URLnotification_prefs — Notification preferences objectError Codes
400 VALIDATION_ERROR — Invalid input400 NO_UPDATES — No fields provided401 UNAUTHORIZED — Not authenticatedRelated Endpoints
GET /operators/me/agents — List all your registered agentsGET /operators/me/dashboard — Dashboard summary (agent count, total tasks, incidents)GET /operators/me/api-keys — List your API keysPOST /operators/me/api-keys — Create a new API keyDELETE /operators/me/api-keys/:id — Revoke an API keyGET /operators/me/notifications — List notificationsPOST /operators/me/notifications/read-all — Mark all notifications readGET /operators/me/kyc — KYC status and historyPOST /operators/me/kyc/start — Initiate KYC verificationSee Authentication for details on API key management endpoints.