Character permissions resource
https://www.swcombine.com/ws/v2.0/documentation/character/uid/permissions/ SW Combine API Documentation
Get flat list of granted scope names
Array of scope strings (e.g., ['CHARACTER_READ', 'MESSAGES_SEND'])
Get permissions granted to API client for this character
Full permissions response with scopes and expiration
const perms = await client.character.permissions.list({ uid: '1:12345' });const scopes = perms.permission[0]?.scopes.scope || [];console.log('Granted scopes:', scopes.join(', ')); Copy
const perms = await client.character.permissions.list({ uid: '1:12345' });const scopes = perms.permission[0]?.scopes.scope || [];console.log('Granted scopes:', scopes.join(', '));
Character permissions resource
See
https://www.swcombine.com/ws/v2.0/documentation/character/uid/permissions/ SW Combine API Documentation