All URIs are relative to https://localhost/api/v1
Method | HTTP request | Description |
---|---|---|
schemaGet | GET /schema | Get model schemata for data objects returned by this API. |
schemaWebsocketHelp | GET /schema/websocketHelp | Returns help text & subject list for websocket usage. |
Object schemaGet(model)
Get model schemata for data objects returned by this API.
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.SchemaApi;
SchemaApi apiInstance = new SchemaApi();
String model = "model_example"; // String | Optional model filter. If omitted, will return all models.
try {
Object result = apiInstance.schemaGet(model);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SchemaApi#schemaGet");
e.printStackTrace();
}
Name | Type | Description | Notes |
---|---|---|---|
model | String | Optional model filter. If omitted, will return all models. | [optional] |
Object
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
Object schemaWebsocketHelp()
Returns help text & subject list for websocket usage.
// Import classes:
//import io.swagger.client.ApiException;
//import io.swagger.client.api.SchemaApi;
SchemaApi apiInstance = new SchemaApi();
try {
Object result = apiInstance.schemaWebsocketHelp();
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling SchemaApi#schemaWebsocketHelp");
e.printStackTrace();
}
This endpoint does not need any parameter.
Object
No authorization required
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript