List all clusters
GET/ai/clusters
List all clusters
Request
Query Parameters
page[number] Page[Number]
Default value: 0
page[size] Page[Size]
Default value: 20
Responses
200: Successful Response
- application/json
422: Validation Error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/ai/clusters' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"data": [
{
"task_id": "string",
"status": "pending",
"bucket": "string",
"created_at": "2024-07-29T15:51:28.071Z",
"finished_at": "2024-07-29T15:51:28.071Z",
"min_cluster_size": 0,
"min_subcluster_size": 0
}
],
"meta": {
"total_pages": 0,
"total_results": 0,
"page_number": 0,
"page_size": 0
}
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}