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
| Role | Permissions |
|---|---|
| Owner | Full access, billing, delete org |
| Admin | Manage projects, keys, team |
| Member | Read/write data, create fixes |
| Viewer | Read-only access |
Quick Actions
Create Project
curl -X POST "https://app.risicare.ai/v1/projects" \
-H "Authorization: Bearer rsk-..." \
-d '{
"name": "my-project",
"environment": "production"
}'Invite Team Member
curl -X POST "https://app.risicare.ai/v1/team/invite" \
-H "Authorization: Bearer rsk-..." \
-d '{
"email": "user@example.com",
"role": "member"
}'Create API Key
curl -X POST "https://app.risicare.ai/v1/api-keys" \
-H "Authorization: Bearer rsk-..." \
-d '{
"name": "production-sdk",
"project_id": "proj-abc123"
}'Billing
Access billing in the dashboard:
- Navigate to Settings → Billing
- View current usage
- Manage subscription
- Download invoices
Usage Limits
| Plan | Traces/month | Retention | Team |
|---|---|---|---|
| Free | 10,000 | 7 days | 1 |
| Pro | 1,000,000 | 30 days | 10 |
| Enterprise | Unlimited | 90+ days | Unlimited |