API v2: Session BackupΒΆ
Data StructuresΒΆ
Attribute |
Type |
Description |
|---|---|---|
|
string |
ID of the session to backup. Requires |
|
string-array |
IDs of the sessions to backup. Requires |
|
string |
ID of the backup target. Requires |
|
string |
Name of the backup target. Requires |
Retrieve Available Attributes of the SessionBackupModelΒΆ
Request
Method |
|
Path |
|
GET /api/v2/objspec/session_backup
Example Request
curl -s -k -X GET \
-H 'Authorization: sgfeea6jsaz4mum9su8w6' \
'https://10.0.214.98/api/v2/objspec/session_backup'
Mark Existing Session for Back UpΒΆ
Request
Method |
|
Path |
|
Example Request
POST /api/v2/session/<session_id>/backup/<backup_id>
Request
Method |
|
Path |
|
Headers |
|
Body |
|
Example Request
PATCH /api/v2/session_backup
{
"backup_name": "Backup_Target_Name",
"session_ids": [
"2345678901234567890",
"2345678901234567891"
]
}
Response
{
"result": "success",
"session_ids": [
"2345678901234567890",
"2345678901234567891"
]
}