Skip to content

Latest commit

 

History

History
62 lines (46 loc) · 2.31 KB

File metadata and controls

62 lines (46 loc) · 2.31 KB

Documentation for API Endpoints

All URIs are relative to https://PSM-IP-addr

Class Method HTTP request Description
EventsV1Api get_get_event GET /events/v1/events/{UUID} Get specific event
EventsV1Api get_get_events1 GET /events/v1/events
EventsV1Api post_get_events POST /events/v1/events

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

Notes for Large OpenAPI documents

If the OpenAPI document is large, imports in psm.apis and psm.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:

Solution 1: Use specific imports for apis and models like:

  • from psm.api.default_api import DefaultApi
  • from psm.model.pet import Pet

Solution 1: Before importing the package, adjust the maximum recursion limit as shown below:

import sys
sys.setrecursionlimit(1500)
import psm
from psm.apis import *
from psm.models import *