Query parameters

  • cursor string

    A cursor returned from a previous call to /machines/{machineSlug}/v

Responses

  • The machine versions for this machine

    Hide response attributes Show response attributes object
    • versions array[object] Required
      Hide versions attributes Show versions attributes
    • cursor string

      The cursor to use on the next call to retrieve the next page of machine versions. If no cursor is returned, there are no more pages to retrieve.

GET /machines/{machineSlug}/v
curl \
 -X GET https://api.statebacked.dev/machines/{machineSlug}/v \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "versions": [
    {
      "id": "string",
      "createdAt": "2023-05-04T09:42:00+00:00",
      "clientInfo": "string"
    }
  ],
  "cursor": "string"
}
Response examples (200)
{
  "versions": [
    {
      "id": "string",
      "createdAt": "2024-05-04T09:42:00+00:00",
      "clientInfo": "string"
    }
  ],
  "cursor": "string"
}