Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.15 KB

File metadata and controls

52 lines (32 loc) · 1.15 KB

MetaApi

All URIs are relative to http://localhost:8080

Method HTTP request Description
about GET /about Get various information about the API

about

AboutInfo about()

Retrieve API version information and build details.

Example

import {
    MetaApi,
    Configuration
} from '@cosmotech/api-ts';

const configuration = new Configuration();
const apiInstance = new MetaApi(configuration);

const { status, data } = await apiInstance.about();

Parameters

This endpoint does not have any parameters.

Return type

AboutInfo

Authorization

oAuth2AuthCode

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, application/yaml

HTTP response details

Status code Description Response headers
200 API information details -

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