Back to Apitable

.ClientInterfaceApi

packages/api-client/ClientInterfaceApi.md

1.13.0-beta.11.7 KB
Original Source

.ClientInterfaceApi

All URIs are relative to http://backend/api/v1

MethodHTTP requestDescription
getTemplateInfoGET /client/infoGet application version information

getTemplateInfo

ClientInfoVO getTemplateInfo()

Get the application client version rendering information

Example

typescript
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));

Parameters

NameTypeDescriptionNotes
spaceId[string](optional) defaults to undefined
pipeline[string]Construction serial number(optional) defaults to undefined

Return type

ClientInfoVO

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

[Back to top] [Back to API list] [Back to Model list] [Back to README]