VAST Data replicationrestorepoints API

A replication restore point is a location to which a snapshot was replicated and from which files can be restored.A restore point may reside on an S3 replication peer or on an async replication peer.

Operations 2

GET /replicationrestorepoints/ List Replication Restore Points #
GET /replicationrestorepoints/{id}/ Return Details of a Replication Restore Point #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/vastdata-replicationrestorepoints-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vastdata-replicationrestorepoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Replicationrestorepoints API
  version: '1.0'
security:
- ApiToken: []
tags:
- description: A replication restore point is a location to which a snapshot was replicated and from which files can be restored.A restore point may reside on an S3 replication peer or on an async replication peer.
  name: replicationrestorepoints
paths:
  /replicationrestorepoints/:
    get:
      description: This endpoint lists replication restore points.
      operationId: replicationrestorepoints_list
      parameters:
      - in: query
        name: page
        schema:
          type: string
      - in: query
        name: stream__id
        schema:
          type: string
      - in: query
        name: stream__name
        schema:
          type: string
      - in: query
        name: stream__name__contains
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ReplicationRestorePoint'
                title: Replication Restore Points
                type: array
          description: Replication restore points information
      summary: List Replication Restore Points
      tags:
      - replicationrestorepoints
  /replicationrestorepoints/{id}/:
    get:
      description: This endpoint returns details of a replication restore point.
      operationId: replicationrestorepoints_read
      parameters:
      - description: index of replication restore point
        in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReplicationRestorePoint'
          description: ''
      summary: Return Details of a Replication Restore Point
      tags:
      - replicationrestorepoints
components:
  schemas:
    ReplicationRestorePoint:
      properties:
        crate_id:
          description: crate id
          type: integer
        created:
          format: date-time
          type: string
          x-cli-header: Creation Time
          x-format: datetime2display
        eta_sec:
          description: Amount of seconds to completion
          type: string
          x-cli-header: Remaining Time
        guid:
          description: guid
          type: string
        id:
          type: integer
          x-cli-header: ID
        internal:
          type: boolean
        is_local:
          type: boolean
        logical_backlog:
          type: integer
        logical_size:
          description: Logical Space
          format: int64
          type: integer
          x-cli-header: Transferred Logical Size
          x-display-base-type: capacity
          x-display-units: TB
          x-display-units-alt: TiB
          x-format: bytes2tb
          x-raw-units: Bytes
        name:
          type: string
          x-cli-header: Name
        network_bw_per_sec:
          format: int64
          type: integer
          x-cli-header: Bandwidth
          x-display-units: MB/s
          x-format: bytes2mb
          x-raw-units: Bytes/s
        physical_backlog:
          type: integer
        physical_size:
          description: Physical Space
          format: int64
          type: integer
          x-cli-header: Transferred Physical Size
          x-display-base-type: capacity
          x-display-units: TB
          x-display-units-alt: TiB
          x-format: bytes2tb
          x-raw-units: Bytes
        progress_promil:
          description: Progress
          type: string
          x-cli-header: Progress
        protected_path_guid:
          type: string
        state:
          description: state
          type: string
        stream:
          type: string
        stream_index:
          description: stream index
          type: integer
        stream_name:
          description: Stream name
          type: string
          x-cli-header: Replication Stream
        target_name:
          description: Target name
          type: string
          x-cli-header: Peer
        upload_finish_time:
          type: string
        upload_start_time:
          type: string
        url:
          type: string
      type: object
  securitySchemes:
    ApiToken:
      description: Send current valid API token in an Authorization header with format Api-Token <token>.
      in: header
      name: ApiToken
      type: apiKey
    basicAuth:
      description: Basic authentication using VMS user name and password
      scheme: basic
      type: http