All URIs are relative to http://localhost:9000
Method | HTTP request | Description |
---|---|---|
addPlatform | POST /platform | |
addPlatformEnvironment | POST /platformEnvironment | |
addPlatformHardware | POST /platformHardware | |
addPlatformRuntime | POST /platformRuntime | |
deletePlatform | DELETE /platform/{id} | |
findPlatform | GET /platform/{id} | |
findPlatformEnvironment | GET /platformEnvironment/{id} | |
findPlatformEnvironments | GET /platformEnvironment | |
findPlatformHardware | GET /platformHardware/{id} | |
findPlatformHardwares | GET /platformHardware | |
findPlatformRuntime | GET /platformRuntime/{id} | |
findPlatformRuntimes | GET /platformRuntime | |
findPlatforms | GET /platform |
Platform addPlatform(platform)
Creates a new platform.
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
NewPlatform platform = new NewPlatform(); // NewPlatform | Platform to add
try {
Platform result = apiInstance.addPlatform(platform);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#addPlatform");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
platform | NewPlatform | Platform to add |
- Content-Type: application/json
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
404 | Item not found | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformEnvironment addPlatformEnvironment(platformEnvironment)
Creates a new PlatformEnvironment
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
NewPlatformEnvironment platformEnvironment = new NewPlatformEnvironment(); // NewPlatformEnvironment | PlatformEnvironment to be created
try {
PlatformEnvironment result = apiInstance.addPlatformEnvironment(platformEnvironment);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#addPlatformEnvironment");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
platformEnvironment | NewPlatformEnvironment | PlatformEnvironment to be created |
- Content-Type: application/json
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
404 | Item not found | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformHardware addPlatformHardware(platformHardware)
Creates a new PlatformHardware
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
NewPlatformHardware platformHardware = new NewPlatformHardware(); // NewPlatformHardware | PlatformHardware to be created
try {
PlatformHardware result = apiInstance.addPlatformHardware(platformHardware);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#addPlatformHardware");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
platformHardware | NewPlatformHardware | PlatformHardware to be created |
- Content-Type: application/json
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
404 | Item not found | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformRuntime addPlatformRuntime(platformRuntime)
Creates a new PlatformRuntime
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
NewPlatformRuntime platformRuntime = new NewPlatformRuntime(); // NewPlatformRuntime | PlatformRuntime to be created
try {
PlatformRuntime result = apiInstance.addPlatformRuntime(platformRuntime);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#addPlatformRuntime");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
platformRuntime | NewPlatformRuntime | PlatformRuntime to be created |
- Content-Type: application/json
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
404 | Item not found | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
deletePlatform(id)
Deletes the platform identified by the given id paramater.
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
String id = "id_example"; // String | Unique identifier of the resource
try {
apiInstance.deletePlatform(id);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#deletePlatform");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | Unique identifier of the resource |
null (empty response body)
- Content-Type: Not defined
- Accept: application/json, code, message
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
404 | Item not found | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
Platform findPlatform(id)
Returns the platform identified by the given id parameter
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
String id = "id_example"; // String | Unique identifier of the resource
try {
Platform result = apiInstance.findPlatform(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatform");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | Unique identifier of the resource |
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | The platform identified by the id | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformEnvironment findPlatformEnvironment(id)
Returns the PlatformEnvironment identified by the id parameter.
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
String id = "id_example"; // String | Unique identifier of the resource
try {
PlatformEnvironment result = apiInstance.findPlatformEnvironment(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformEnvironment");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | Unique identifier of the resource |
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
List<PlatformEnvironment> findPlatformEnvironments()
Returns all platform environment visible to the user
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
try {
List<PlatformEnvironment> result = apiInstance.findPlatformEnvironments();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformEnvironments");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformHardware findPlatformHardware(id)
Returns the PlatformHardware identified by the id parameter.
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
String id = "id_example"; // String | Unique identifier of the resource
try {
PlatformHardware result = apiInstance.findPlatformHardware(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformHardware");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | Unique identifier of the resource |
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
List<PlatformHardware> findPlatformHardwares()
Returns all platform hardware visible to the user
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
try {
List<PlatformHardware> result = apiInstance.findPlatformHardwares();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformHardwares");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
PlatformRuntime findPlatformRuntime(id)
Returns the PlatformRuntime identified by the id parameter.
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
String id = "id_example"; // String | Unique identifier of the resource
try {
PlatformRuntime result = apiInstance.findPlatformRuntime(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformRuntime");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | String | Unique identifier of the resource |
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
List<PlatformRuntime> findPlatformRuntimes()
Returns all platform runtime visible to the user
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
try {
List<PlatformRuntime> result = apiInstance.findPlatformRuntimes();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatformRuntimes");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |
List<Platform> findPlatforms()
Returns all platform from the system that the user has access to
// Import classes:
import io.github.cloudiator.rest.ApiClient;
import io.github.cloudiator.rest.ApiException;
import io.github.cloudiator.rest.Configuration;
import io.github.cloudiator.rest.auth.*;
import io.github.cloudiator.rest.models.*;
import io.github.cloudiator.rest.api.PlatformApi;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
defaultClient.setBasePath("http://localhost:9000");
// Configure API key authorization: ApiKeyAuth
ApiKeyAuth ApiKeyAuth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
ApiKeyAuth.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//ApiKeyAuth.setApiKeyPrefix("Token");
PlatformApi apiInstance = new PlatformApi(defaultClient);
try {
List<Platform> result = apiInstance.findPlatforms();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling PlatformApi#findPlatforms");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, code, message,
Status code | Description | Response headers |
---|---|---|
200 | All platforms | - |
401 | Authorization for this action is missing | - |
403 | Forbidden action | - |
500 | An unexpected Error occured | - |
504 | Server temporary not available | - |