List Skill Collections
GET
/api/v3/organizations/{organisation}/ai/skills/collections
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/skills/collections';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/skills/collections \ --header 'Authorization: Bearer <token>'Lists distinct namespaces (collections) for the organization, with skill counts and skill names for each collection.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Responses
Section titled “Responses”Collections retrieved successfully
Media typeapplication/json
object
collections
Array<object>
object
namespace
string
count
integer
skills
Array<string>
Example
{ "collections": [ { "namespace": "superpowers", "count": 14 } ]}Access denied
Failed to retrieve collections
