Actions
Available for user tokens and project keys
Last updated
Available for user tokens and project keys
GET https://api.suble.io/projects/:projectId/vm/:vmId/actions/:amount?
Retrieve a list of actions performed on virtual machine.
projectId
string
Unique Id for the project
vmId
string
Unique Id for the virtual machine
amount
number
Amount of actions that will be fetched. Default: 25
Authorization
string
User token or project key
[
{
"_id": ObjectId,
"user": ObjectId, // nullable
"apikey": String, // nullable
"type": String,
"command": String,
"vm": String,
"running": Boolean,
"progress": Number,
"date": Number // Date time unix
}
]{
"error": String
}Last updated