NOTICE: JetBackup Management Console is in ALPHA testing stage. Please handle with caution. Any information on this document is subject to change as we continue to develop and make changes.

JetBackup Management Console API Documentation

Introduction

JetBackup Management Console API accesses the JetBackup MC interface's features.
You can use this API to perform all the tasks you perform from the JetBackup MC GUI and more!
With JetBackup MC API you can manage and optimize backup Jobs within all your Servers.

Authentication

In order to communicate with the JetBackup MC server, you will need to create an API Access Token through Users section of the JetBackup MC or through Manage Access Token API Call.
After creating the API access token, you will need to pass it in the request header, for example:
curl -k -H "Authorization: Bearer testuser:9MKjw55we7TIq0CdpaHaiYHacB5hQOqp" "https://1.1.1.1:3031/API/manageServer/?_id=5b30da08d5ac5e06897b47e2&action=modify&name=JBServer1"

Basic usage

The term "Boolean" in our documentation refers to parameters that accept values of 1 or 0.
We don't support the literal values of true and false.

For more information about jetapi basic usage click on Jetapi Parameters

API Response

On each function page, you will find details for the response data.
All the API call returns this object:
{
   "success":1,
   "message":"Logged In Successfully",
   "system":
   {
      "version":"1.0.0",
      "licenseIssue":false
   }
   "data":{},
}

Parameters

Parameter name Type Description Possible values Example
success Boolean Whether the API call was successful.    
message String Success/failure message.   You already have a download for this backup.
data Object The returned data.    
system Object System information. To view the possible values click on System Object.