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

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:

  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