API Guide

Table Of Contents
Responses
HTTP
Code
Description Schema
200 The configuration object SystemConfig
500 When configuration cannot be obtained Error
Example HTTP response
Response 200
{
Ê "platform" : "VS2",
Ê "product_type" : "metro",
Ê "wan_type" : "FC",
Ê "limits" : {
Ê "storage_volume_size" : 70368744177664
Ê }
}
3.34. Token
3.34.1. URL to authenticate and get back access_token in case of success
POST /token
Parameters
Type Name Schema
Header
password
required
string (password)
Header
username
required
string
Body
token_payload
optional
LoginPayload
Responses
HTTP
Code
Description Schema
200 Authenticated LoginResponse
400 Invalid input Error
401 User not authorized Error
106