Skip to main content
GET
/
v2
/
enterprise
/
snapshots
/
{snapshot_id}
Get Snapshot
curl --request GET \
  --url https://api.devin.ai/v2/enterprise/snapshots/{snapshot_id} \
  --header 'Authorization: Bearer <token>'
{
  "created_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "is_default": true,
  "org": {
    "created_at": "2023-11-07T05:31:56Z",
    "display_name": "<string>",
    "org_id": "<string>"
  },
  "snapshot_id": "<string>",
  "snapshot_name": "<string>",
  "status": "<string>",
  "pending_scripts": [
    {
      "created_at": "2023-11-07T05:31:56Z",
      "script_id": "<string>",
      "script_name": "<string>",
      "status": "<string>"
    }
  ]
}
Requires an enterprise admin personal API key. This endpoint retrieves detailed information about a specific Machine Snapshot within your enterprise.

Authorizations

Authorization
string
header
required

Personal API Key (apk_user_*) for Enterprise Admins only

Path Parameters

snapshot_id
string
required

Response

Successful Response

created_at
string<date-time>
required
description
string | null
required
is_default
boolean
required
org
EnterpriseOrganizationResponse · object
required
snapshot_id
string
required
snapshot_name
string
required
status
string
required
pending_scripts
EnterpriseSnapshotScriptResponse · object[] | null