Skip to main content
GET
/
v1
/
users
/
{id}
/
snapshots
Get Application Snapshots
curl --request GET \
  --url https://api.vertracloud.app/v1/users/{id}/snapshots
{
  "response": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "resource_id": "550e8400-e29b-41d4-a716-446655440001",
      "size": "1.23 MB",
      "date": "2026-03-14T21:00:00.000Z"
    }
  ]
}
id
string
required
The ID of the application or database to retrieve snapshots for.
scope
string
required
The resource type to filter snapshots by. Possible values: applications, databases.

Response

response
array
An array of snapshot objects.
{
  "response": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "resource_id": "550e8400-e29b-41d4-a716-446655440001",
      "size": "1.23 MB",
      "date": "2026-03-14T21:00:00.000Z"
    }
  ]
}

Error Responses

code
string
The error code indicating the reason for failure. Possible values:
  • UNAUTHORIZED: The user is not authenticated.
  • USER_NOT_FOUND: The authenticated user was not found.
  • INTERNAL_SERVER_ERROR: An unexpected server error occurred.
{
  "code": "UNAUTHORIZED"
}