List user's scopes
Returns a list of scopes that a user is a member of
get/users/{id}/scopes
Path parameters
idstring uuid required
The ID of a user.
The ID of the user
Response
OK
Example response
[
{
"scope": "denoland",
"creator": {
"name": "Ryan Dahl",
"email": "ry@example.com",
"avatarUrl": "https://avatars.githubusercontent.com/u/80?v=4",
"githubId": 80,
"scopeUsage": 3,
"scopeLimit": 10,
"inviteCount": 3
},
"quotas": {
"packageUsage": 3,
"packageLimit": 10,
"newPackagePerWeekUsage": 1,
"newPackagePerWeekLimit": 5,
"publishAttemptsPerWeekUsage": 1,
"publishAttemptsPerWeekLimit": 5
}
}
]