-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi_keys.example.json
More file actions
36 lines (36 loc) · 1.03 KB
/
api_keys.example.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"api_keys": [
{
"key": "ap_admin_key_123456789abcdef",
"user_id": "admin",
"role": "admin",
"permissions": ["*"],
"created_at": "2024-06-14T00:00:00Z",
"expires_at": "2025-06-14T00:00:00Z"
},
{
"key": "ap_user_alice_987654321fedcba",
"user_id": "alice",
"role": "user",
"permissions": ["session:create", "session:list", "session:delete", "session:access"],
"created_at": "2024-06-14T00:00:00Z",
"expires_at": "2025-06-14T00:00:00Z"
},
{
"key": "ap_user_bob_112233445566778",
"user_id": "bob",
"role": "user",
"permissions": ["session:create", "session:list", "session:delete", "session:access"],
"created_at": "2024-06-14T00:00:00Z",
"expires_at": "2025-06-14T00:00:00Z"
},
{
"key": "ap_readonly_charlie_aabbccddeeff",
"user_id": "charlie",
"role": "readonly",
"permissions": ["session:list"],
"created_at": "2024-06-14T00:00:00Z",
"expires_at": "2025-06-14T00:00:00Z"
}
]
}