Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.21 KB

RootApi.md

File metadata and controls

53 lines (35 loc) · 1.21 KB

rapid7vmconsole.RootApi

All URIs are relative to https://localhost:3780

Method HTTP request Description
resources GET /api/3 Resources

resources

Links resources()

Resources

Returns a listing of the resources (endpoints) that are available to be invoked in this API.

Example

from __future__ import print_function
import time
import rapid7vmconsole
from rapid7vmconsole.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = rapid7vmconsole.RootApi()

try:
    # Resources
    api_response = api_instance.resources()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RootApi->resources: %s\n" % e)

Parameters

This endpoint does not need any parameter.

Return type

Links

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json;charset=UTF-8

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