Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
TypeScript
import { SyllableSDK } from "syllable-sdk"; const syllableSDK = new SyllableSDK({ apiKeyHeader: process.env["SYLLABLESDK_API_KEY_HEADER"] ?? "", }); async function run() { const result = await syllableSDK.permissions.list(); console.log(result); } run();
[ { "name": "<string>", "description": "<string>", "permissions": [ { "name": "<string>", "display_name": "<string>", "description": "Fetch agent information" } ] } ]
Get all available permissions in the system.
Successful Response
Name of the permission group
"Agents"
Description of the permission group
"View agents, create and edit agent configurations, and delete agents."
Permissions in the group
Show child attributes