List workspaces
$ boltz-api admin:workspaces list
GET/compute/v1/admin/workspaces
List workspaces
Parameters
--after-id: optional string
Return results after this ID
--before-id: optional string
Return results before this ID
--limit: optional number
Max items to return
minimum1
maximum100
Returns
List workspaces
boltz-api admin:workspaces list{
"data": [
{
"id": "id",
"archived_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"data_retention": {
"unit": "hours",
"value": 1
},
"is_default": true,
"name": "name",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}Returns Examples
{
"data": [
{
"id": "id",
"archived_at": "2019-12-27T18:11:19.117Z",
"created_at": "2019-12-27T18:11:19.117Z",
"data_retention": {
"unit": "hours",
"value": 1
},
"is_default": true,
"name": "name",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"first_id": "first_id",
"has_more": true,
"last_id": "last_id"
}