import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const clusters = await client.ai.clusters.list();
console.log(clusters.data);{
"data": [
{
"task_id": "<string>",
"status": "pending",
"bucket": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z",
"min_cluster_size": 123,
"min_subcluster_size": 123
}
],
"meta": {
"total_pages": 123,
"total_results": 123,
"page_number": 123,
"page_size": 123
}
}import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const clusters = await client.ai.clusters.list();
console.log(clusters.data);{
"data": [
{
"task_id": "<string>",
"status": "pending",
"bucket": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z",
"min_cluster_size": 123,
"min_subcluster_size": 123
}
],
"meta": {
"total_pages": 123,
"total_results": 123,
"page_number": 123,
"page_size": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Show child attributes
pending, starting, running, completed, failed Was this page helpful?