Skip to main content
GitHub

Admin

Platform administration and team management.

Manage your Risicare organization, projects, and team.

Overview

Organization Structure

Organization
├── Projects
│   ├── Project A (production)
│   │   ├── API Keys
│   │   ├── Settings
│   │   └── Data
│   └── Project B (staging)
│       ├── API Keys
│       ├── Settings
│       └── Data
└── Team
    ├── Owners
    ├── Admins
    └── Members

Roles

RolePermissions
OwnerFull access, billing, delete org
AdminManage projects, keys, team
MemberRead/write data, create fixes
ViewerRead-only access

Quick Actions

Create Project

Create projects through the dashboard: click the project dropdown in the top nav → "+ New Project". A default API key is generated automatically.

Invite Team Member

Manage team through the dashboard: Settings → Team → Invite Member. See Team Management.

Create API Key

curl -X POST "https://app.risicare.ai/api/v1/api-keys" \
  -H "Authorization: Bearer rsk-..." \
  -H "Content-Type: application/json" \
  -d '{"name": "production-sdk"}'

Billing

Access billing in the dashboard:

  1. Navigate to Settings → Billing
  2. View current usage
  3. Manage subscription
  4. Download invoices

Usage Limits

PlanTraces/monthRetentionTeam
Free10,0007 days1
Pro1,000,00030 days10
EnterpriseUnlimited90+ daysUnlimited

Next Steps