2025-12-23 12:06:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// List of scopes for Account API keys (Tokens)
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
"account" => [
|
2025-12-29 09:47:27 +00:00
|
|
|
"description" => 'Access to manage account, its organizations, sessions, tokens, and billing.',
|
2025-12-29 07:59:07 +00:00
|
|
|
],
|
|
|
|
|
"teams.read" => [
|
2025-12-23 12:06:19 +00:00
|
|
|
"description" => 'Access to read account\'s organizations.',
|
2025-12-29 07:59:07 +00:00
|
|
|
],
|
|
|
|
|
"teams.write" => [
|
2025-12-29 12:24:26 +00:00
|
|
|
"description" => 'Access to create, update and delete account\'s organizations and its memberships.',
|
2025-12-23 12:06:19 +00:00
|
|
|
],
|
|
|
|
|
];
|