Versions Compared

Key

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

...

  • Purpose: Retrieves a listing of all in-process restores
  • Request: GET /bridge/restore ? {status}
    • status: (Optional) Limit list to restores actions with a specific status
  • Response Body: JSON 

    Code Block
    {
      "restore-id-1" : {
        "files" : "",      # List of files in restore action
        "status" : "",     # Current restore status
        "expiration" : ""  # Date on which restored content will no longer be available
      },                   # Additional restore actions listed here
    }


  • Response Code: 200 (on success)
  • Notes:
    • Used by both the OTM Gateway (to check on restore requests) and the DDP (to determine if there are restore requests which are ready for processing)
    • Restore IDs returned by this method are only those that are in-process.

...

  • Purpose: Allows the repository to ask for status of a specific content restore action
  • Request: GET /bridge/restore/{restore-id}
  • Response Body: JSON 

    Code Block
    { 
      "files" : "",      # List of files in restore action  
      "status" : ""      # This could include a top level status or a per-file status (or both)
      "expiration" : ""  # Date on which restored content will no longer be available
    }


  • Response Code: 200 (on success)
  • Notes:
    • Restored content will only be made available on the Bridge for a limited time. After this time, content will be removed and the status of the restore will be changed to expired.

...