packages/api-client/ClientInterfaceApi.md
All URIs are relative to http://backend/api/v1
| Method | HTTP request | Description |
|---|---|---|
| getTemplateInfo | GET /client/info | Get application version information |
ClientInfoVO getTemplateInfo()
Get the application client version rendering information
import { } from '';
import * as fs from 'fs';
const configuration = .createConfiguration();
const apiInstance = new .ClientInterfaceApi(configuration);
let body:.ClientInterfaceApiGetTemplateInfoRequest = {
// string (optional)
spaceId: "spaceId_example",
// string | Construction serial number (optional)
pipeline: "4818",
};
apiInstance.getTemplateInfo(body).then((data:any) => {
console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));
| Name | Type | Description | Notes |
|---|---|---|---|
| spaceId | [string] | (optional) defaults to undefined | |
| pipeline | [string] | Construction serial number | (optional) defaults to undefined |
ClientInfoVO
No authorization required
| Status code | Description | Response headers |
|---|---|---|
| 200 | OK | - |
| 500 | Internal Server Error | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]