Skip to content

Latest commit

 

History

History
57 lines (32 loc) · 1.2 KB

TokensApi.md

File metadata and controls

57 lines (32 loc) · 1.2 KB

.TokensApi

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

Method HTTP request Description
findAllTokens GET /tokens

findAllTokens

Array findAllTokens()

Example

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

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

let body:any = {};

apiInstance.findAllTokens(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

Array

Authorization

bearer

HTTP request headers

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

HTTP response details

Status code Description Response headers
200 -

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