Institutional · Phase 3

API keys & webhooks

Tạo key để tích hợp VYLA vào HRMS/LMS. Mỗi key có scope, rate limit, và audit log riêng.

P3 — preview only
TênKeyPermissionsRate limitLast usedCreatedAction
RMIT HRMS integrationvyla_sk_live_4a7b…read + webhook1000 / min2 phút trước2026-03-14
Internal dashboardvyla_sk_live_9f2c…read-only500 / min3h ago2026-01-10
Dev sandbox (Vũ)vyla_sk_test_11e4…read + write (sandbox)100 / min1d ago2026-03-28
Webhook endpoints
https://hrms.rmit.edu.vn/vyla/hooks
assessment.completed · report.ready
active
https://backup.sglc.internal/vyla
all
active
Quick-start snippet
# Invite an executive via API
curl -X POST https://api.vyla.sglc/v1/assessments \
  -H "Authorization: Bearer vyla_sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "name": "Lê Thùy Trang",
    "team_id": "corp-banking",
    "locale": "vi"
  }'

# → 201 Created
# {
#   "assessment_id": "ass_01H...",
#   "invite_link": "https://vcb.vyla/assess/token",
#   "expires_at": "2026-05-03T00:00:00Z"
# }