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ên | Key | Permissions | Rate limit | Last used | Created | Action |
|---|---|---|---|---|---|---|
| RMIT HRMS integration | vyla_sk_live_4a7b… | read + webhook | 1000 / min | 2 phút trước | 2026-03-14 | |
| Internal dashboard | vyla_sk_live_9f2c… | read-only | 500 / min | 3h ago | 2026-01-10 | |
| Dev sandbox (Vũ) | vyla_sk_test_11e4… | read + write (sandbox) | 100 / min | 1d ago | 2026-03-28 |
Webhook endpoints
https://hrms.rmit.edu.vn/vyla/hooks
assessment.completed · report.ready
https://backup.sglc.internal/vyla
all
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"
# }