Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
titleIngest Operations

Create Snapshot

  • Purpose: Performs a snapshot action
  • Request: POST https://host:port/bridge/snapshots/(snapshotId)
  • Request Body:

    Code Block
    {
     "host" : "",
     "port" : "",
     "storeId" : "",
     "spaceId" : "",
     "snapshotId": ""
    } 
    • host - DNS host of DuraCloud instance from which snapshot can be taken
    • port - Port on which DuraCloud applications are available
    • storeID - Identifier of Chronopolis staging storage provider on DuraCloud instance
    • spaceID - Identifier of space in which snapshot content residessnapshotID - Identifier of the snapshot

  • Response Code: 200 (on success)
  • Response Body: JSON:

    Code Block
    {
      "snapshotId" : "",
      "status": ""
    }

List All Snapshots

Snapshot Status

  • Purpose: Provides the status of a snapshot action
  • Request: GET https://host:port/bridge/snapshots/(snapshotId)
    • snapshotID - Identifier of the snapshot
  • Response Code: 200 (on success)
  • Response Body: JSON:

    Code Block
    {"status" : ""}

    Possible values for status:

    • ?

...