Skip to content

Latest commit

 

History

History
58 lines (33 loc) · 1.19 KB

DefaultApi.md

File metadata and controls

58 lines (33 loc) · 1.19 KB

.DefaultApi

All URIs are relative to https://roketo-test-api.herokuapp.com

Method HTTP request Description
getHello GET /

getHello

HelloResponse getHello()

Example

import {  } from '@roketo/api-client';
import * as fs from 'fs';

const configuration = .createConfiguration();
const apiInstance = new .DefaultApi(configuration);

let body:any = {};

apiInstance.getHello(body).then((data:any) => {
  console.log('API called successfully. Returned data: ' + data);
}).catch((error:any) => console.error(error));

Parameters

This endpoint does not need any parameter.

Return type

HelloResponse

Authorization

bearer

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 -
401 -

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